From d0442a8636e268f051052e4e4ff04225bab4f67e Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Thu, 1 Oct 2009 16:44:56 +0000 Subject: Test case for #2030 and #2056. --- test/files/run/t2030.scala | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/files/run/t2030.scala (limited to 'test/files/run/t2030.scala') diff --git a/test/files/run/t2030.scala b/test/files/run/t2030.scala new file mode 100644 index 0000000000..251ae2c622 --- /dev/null +++ b/test/files/run/t2030.scala @@ -0,0 +1,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) +} -- cgit v1.2.3