summaryrefslogtreecommitdiff
path: root/test/pending/run/castsingleton.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/castsingleton.scala')
-rw-r--r--test/pending/run/castsingleton.scala10
1 files changed, 0 insertions, 10 deletions
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())
-}