summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-07-05 23:22:43 +0000
committerPaul Phillips <paulp@improving.org>2009-07-05 23:22:43 +0000
commit26bca73b09d29a7978acdda36d2f85478343f9f4 (patch)
tree4c6f0fcf7f0dbee74b0e7572bbb41d8122882b50 /test/pending
parent129cdce82583a07a7b18f850c287553134054867 (diff)
downloadscala-26bca73b09d29a7978acdda36d2f85478343f9f4.tar.gz
scala-26bca73b09d29a7978acdda36d2f85478343f9f4.tar.bz2
scala-26bca73b09d29a7978acdda36d2f85478343f9f4.zip
Implemented proposed strategy for #1503 and mov...
Implemented proposed strategy for #1503 and moved test case out of pending (and fixed it so it didn't throw a match error.)
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/run/castsingleton.check2
-rw-r--r--test/pending/run/castsingleton.scala10
2 files changed, 0 insertions, 12 deletions
diff --git a/test/pending/run/castsingleton.check b/test/pending/run/castsingleton.check
deleted file mode 100644
index 49742281f0..0000000000
--- a/test/pending/run/castsingleton.check
+++ /dev/null
@@ -1,2 +0,0 @@
-L()
-L()
diff --git a/test/pending/run/castsingleton.scala b/test/pending/run/castsingleton.scala
deleted file mode 100644
index 171b380dc9..0000000000
--- a/test/pending/run/castsingleton.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test extends Application {
- case class L();
- object N extends L();
-
- def empty(xs : L) : Unit = xs match {
- case x@N => println(x); println(x);
- }
-
- empty(L())
-}