summaryrefslogtreecommitdiff
path: root/test/pending/run/treesetmap.scala
blob: 60902d2b9010c6df437da2c1d2b1a975f3102727 (plain) (blame)
1
2
3
4
5
object Test{
  def main(args : Array[String]){
    println(scala.collection.immutable.TreeSet(1, 2, 3).map(x => x).getClass);
  }
}