aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5816.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5816.scala')
-rw-r--r--tests/pending/run/t5816.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/pending/run/t5816.scala b/tests/pending/run/t5816.scala
deleted file mode 100644
index 4c2a5bcb7..000000000
--- a/tests/pending/run/t5816.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.reflect.runtime.{currentMirror => cm}
-import scala.tools.reflect.ToolBox
-
-object Test extends dotty.runtime.LegacyApp {
- val toolbox = cm.mkToolBox()
-
- def printSource[T](expr: Expr[T]): Unit = {
- val ttree = toolbox typecheck expr.tree
- println(ttree.toString)
- }
-
- var y = 3
- printSource(reify {
- 5 + y
- })
-}