aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_38.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_newimpl_38.scala')
-rw-r--r--tests/pending/run/reify_newimpl_38.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/run/reify_newimpl_38.scala b/tests/pending/run/reify_newimpl_38.scala
deleted file mode 100644
index a313b7d8d..000000000
--- a/tests/pending/run/reify_newimpl_38.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- {
- val x = 42
- def foo() = reify{ val y = x; reify(y) };
- {
- val x = 2
- val code1 = foo()
- val code2 = code1.eval
- println(code2.eval)
- }
- }
-}