aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/pos/t4112.scala
blob: ab0f36fdc4ab30764ba0eab91814d36c1a1573aa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                            
import collection.immutable._



object Test {
  def main(args: Array[String]): Unit = {
    val treemap = TreeMap(1 -> 2, 3 -> 4) ++ TreeMap(5 -> 6)
    (treemap: TreeMap[Int, Int])
  }
}