summaryrefslogtreecommitdiff
path: root/test/pending/run/t2030.scala
blob: 4bf20915fb9069aa020e38cdbfee3f3f1b05c8b1 (plain) (blame)
1
2
3
4
5
6
7
import scala.collection.immutable._

object Test extends Application {
  val res0 = TreeSet(1, 2, 3)
  val res1 = res0.map(x => x)
  println(res1.getClass)
}