aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_36.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_newimpl_36.scala')
-rw-r--r--tests/pending/run/reify_newimpl_36.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/run/reify_newimpl_36.scala b/tests/pending/run/reify_newimpl_36.scala
deleted file mode 100644
index 19f8617c6..000000000
--- a/tests/pending/run/reify_newimpl_36.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(reify(x));
- {
- val x = 2
- val code1 = foo()
- val code2 = code1.eval
- println(code2.eval)
- }
- }
-}