aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_06.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_newimpl_06.scala')
-rw-r--r--tests/pending/run/reify_newimpl_06.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/pending/run/reify_newimpl_06.scala b/tests/pending/run/reify_newimpl_06.scala
deleted file mode 100644
index 8743da100..000000000
--- a/tests/pending/run/reify_newimpl_06.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.ToolBox
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- class C(val y: Int) {
- val code = reify {
- reify{y}.eval
- }
- }
-
- println(new C(2).code.eval)
-}