Language FAQ says
import scala.collection.mutable.{_, Map => _, Set => _}
should import all classes from package scala.collection.mutable, except Map and Set. But it gives me this error: 
error: '}' expected but ',' found.
       import scala.collection.mutable.{_, Map => _, Set => _}
Is there still a way to do this?
 
     
    