summaryrefslogtreecommitdiff
path: root/test/files/pos/t4112.scala
blob: 311dad9e725cfaf076f425053c4e9785e5579f22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import collection.immutable._



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