aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6104.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6104.scala')
-rw-r--r--tests/pending/run/t6104.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/pending/run/t6104.scala b/tests/pending/run/t6104.scala
deleted file mode 100644
index ac6d4c77e..000000000
--- a/tests/pending/run/t6104.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-class A { Self =>
- val ok = "ok"
- this match {
- case me@Self => println(me.ok)
- }
-}
-
-object Test extends A with App