summaryrefslogtreecommitdiff
path: root/test/files/run/bug2075.scala
blob: f328faddcbf628e39ea0387ce397c5584aa064f7 (plain) (blame)
1
2
3
4
5
6
7
object Test extends Application {
  var tm = new scala.collection.immutable.TreeMap[Int,Int]
  for (i <- 0 to 100)
    tm = tm.insert(i, i)

  tm.keySet.filter(_ < 40)
}