aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t7558.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t7558.scala')
-rw-r--r--tests/pending/run/t7558.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/pending/run/t7558.scala b/tests/pending/run/t7558.scala
deleted file mode 100644
index 26163555f..000000000
--- a/tests/pending/run/t7558.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
- val cm = reflect.runtime.currentMirror
- val u = cm.universe
- import scala.tools.reflect.ToolBox
- val tb = cm.mkToolBox()
- val t = { var x = "ab".toList; u.reify { x = x.reverse; x }.tree }
- val evaluated = tb.eval(t)
- assert(evaluated == "ba".toList, evaluated)
-}