summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorDavid MacIver <david.maciver@gmail.com>2009-06-01 11:54:12 +0000
committerDavid MacIver <david.maciver@gmail.com>2009-06-01 11:54:12 +0000
commitc7aa8f5778d682f169e1943330e97b7d38a41f2e (patch)
tree67b6c80eceeaefff4ff350ba4ee786d3b6b09bdc /test/pending
parent289970ec7f8673dbf9999d9c83bbd7c15aa15629 (diff)
downloadscala-c7aa8f5778d682f169e1943330e97b7d38a41f2e.tar.gz
scala-c7aa8f5778d682f169e1943330e97b7d38a41f2e.tar.bz2
scala-c7aa8f5778d682f169e1943330e97b7d38a41f2e.zip
pending test for ticket #2030
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/run/treesetmap.check1
-rw-r--r--test/pending/run/treesetmap.scala5
2 files changed, 6 insertions, 0 deletions
diff --git a/test/pending/run/treesetmap.check b/test/pending/run/treesetmap.check
new file mode 100644
index 0000000000..c55dc061db
--- /dev/null
+++ b/test/pending/run/treesetmap.check
@@ -0,0 +1 @@
+class scala.collection.immutable.TreeMap
diff --git a/test/pending/run/treesetmap.scala b/test/pending/run/treesetmap.scala
new file mode 100644
index 0000000000..60902d2b90
--- /dev/null
+++ b/test/pending/run/treesetmap.scala
@@ -0,0 +1,5 @@
+object Test{
+ def main(args : Array[String]){
+ println(scala.collection.immutable.TreeSet(1, 2, 3).map(x => x).getClass);
+ }
+}