summaryrefslogtreecommitdiff
path: root/test/pending/run/t2030.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t2030.scala')
-rw-r--r--test/pending/run/t2030.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/pending/run/t2030.scala b/test/pending/run/t2030.scala
new file mode 100644
index 0000000000..4bf20915fb
--- /dev/null
+++ b/test/pending/run/t2030.scala
@@ -0,0 +1,7 @@
+import scala.collection.immutable._
+
+object Test extends Application {
+ val res0 = TreeSet(1, 2, 3)
+ val res1 = res0.map(x => x)
+ println(res1.getClass)
+}