aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6023.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6023.scala')
-rw-r--r--tests/pending/run/t6023.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/pending/run/t6023.scala b/tests/pending/run/t6023.scala
deleted file mode 100644
index 9ec8724a4..000000000
--- a/tests/pending/run/t6023.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 {
- // test 1: reify
- val tree = reify{ trait Foo { val a: Int } }.tree
- println(tree.toString)
-
- // test 2: import and typecheck
- val toolbox = cm.mkToolBox()
- val ttree = toolbox.typecheck(tree)
- println(ttree.toString)
-
- // test 3: import and compile
- toolbox.eval(tree)
-}