aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5273_1_newpatmat.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5273_1_newpatmat.scala')
-rw-r--r--tests/pending/run/t5273_1_newpatmat.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/run/t5273_1_newpatmat.scala b/tests/pending/run/t5273_1_newpatmat.scala
deleted file mode 100644
index 1ed2ce79a..000000000
--- a/tests/pending/run/t5273_1_newpatmat.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- reify {
- List(1, 2, 3) match {
- case foo :: bar :: _ => println(foo * bar)
- case _ => println("this is getting out of hand!")
- }
- }.eval
-}