aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6591_7.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6591_7.scala')
-rw-r--r--tests/pending/run/t6591_7.scala27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/pending/run/t6591_7.scala b/tests/pending/run/t6591_7.scala
deleted file mode 100644
index cec0d2cda..000000000
--- a/tests/pending/run/t6591_7.scala
+++ /dev/null
@@ -1,27 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-import internal._
-
-object Test extends dotty.runtime.LegacyApp {
- locally {
- val x = 2
- def y = 3
- var z = 4
- class C {
- var w = 5
- locally {
- val expr = reify(x + y + z + w)
- // blocked by SI-7103, though it's not the focus of this test
- // therefore I'm just commenting out the evaluation
- // println(expr.eval)
- freeTerms(expr.tree) foreach (ft => {
- // blocked by SI-7104, though it's not the focus of this test
- // therefore I'm just commenting out the call to info
- // println(s"name = ${ft.name}, sig = ${ft.info}, stable = ${ft.isStable}")
- println(s"name = ${ft.name}, stable = ${ft.isStable}")
- })
- }
- }
- new C()
- }
-}