aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/test.scala
blob: 18741481a3323142170d451db0cd3b604de9e192 (plain) (blame)
1
2
3
4
5
6
7
8
object test {
  
  import collection.JavaConverters._
  
  private val elems =
    (new java.util.LinkedHashMap[String, List[Int]]).asScala
  val elems2: collection.mutable.Map[String, List[Int]] = elems
}