aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_48.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_newimpl_48.scala')
-rw-r--r--tests/pending/run/reify_newimpl_48.scala22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/pending/run/reify_newimpl_48.scala b/tests/pending/run/reify_newimpl_48.scala
deleted file mode 100644
index 7d1c1d642..000000000
--- a/tests/pending/run/reify_newimpl_48.scala
+++ /dev/null
@@ -1,22 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.ToolBox
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- val outer1 = {
- val x = 2
- reify{x}
- }
-
- val outer2 = {
- val x = 3
- reify{x}
- }
-
- val code = reify{
- val x = 4
- x + outer1.splice + outer2.splice
- }
-
- println(code.eval)
-}