aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5272_1_oldpatmat.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5272_1_oldpatmat.scala')
-rw-r--r--tests/pending/run/t5272_1_oldpatmat.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/run/t5272_1_oldpatmat.scala b/tests/pending/run/t5272_1_oldpatmat.scala
deleted file mode 100644
index 30d0c875d..000000000
--- a/tests/pending/run/t5272_1_oldpatmat.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- reify {
- 2 match {
- case 2 => println("okay")
- case _ => println("not okay")
- }
- }.eval
-}