aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_49.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_newimpl_49.scala')
-rw-r--r--tests/pending/run/reify_newimpl_49.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pending/run/reify_newimpl_49.scala b/tests/pending/run/reify_newimpl_49.scala
deleted file mode 100644
index 61ddfafa3..000000000
--- a/tests/pending/run/reify_newimpl_49.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- {
- var y = 1
- def x = { y += 2; y }
- val code = reify {
- def foo = y // ensures that y is the first freevar we find
- println(x)
- println(y)
- println(x)
- }
- code.eval
- }
-}