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

object Test extends App {
  val res0 = TreeSet(1, 2, 3, 4, 5, 6)
  val res1 = res0.map(x => x)
  println(res0.toList == res1.toList)
  println(res1.getClass)
}