summaryrefslogblamecommitdiff
path: root/test/files/run/t2030.scala
blob: 251ae2c622ce275a0fe92e81f0663bdd7240de18 (plain) (tree)
1
2
3
4
5
6
7
8


                                   
                                      
                             
                                     

                        
import scala.collection.immutable._

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