aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t4897.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t4897.scala')
-rw-r--r--tests/pending/run/t4897.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/run/t4897.scala b/tests/pending/run/t4897.scala
deleted file mode 100644
index f65c2745e..000000000
--- a/tests/pending/run/t4897.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-class CSuper {
- object A
-}
-class C extends CSuper {
- def f = (A: AnyRef) match { case _: A.type => "joepie" }
-}
-
-object Test extends C with App {
- println(f)
-}