aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_30.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_newimpl_30.scala')
-rw-r--r--tests/pending/run/reify_newimpl_30.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/pending/run/reify_newimpl_30.scala b/tests/pending/run/reify_newimpl_30.scala
deleted file mode 100644
index afc199d50..000000000
--- a/tests/pending/run/reify_newimpl_30.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.{ ToolBox, ToolBoxError }
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- {
- class C {
- type T = Int
- val code = reify {
- List[C#T](2)
- }
- try { println(code.eval) }
- catch { case e: ToolBoxError => println(e.getMessage) }
- }
-
- new C
- }
-}