aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5418b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5418b.scala')
-rw-r--r--tests/pending/run/t5418b.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/run/t5418b.scala b/tests/pending/run/t5418b.scala
deleted file mode 100644
index 650700ae2..000000000
--- a/tests/pending/run/t5418b.scala
+++ /dev/null
@@ -1,11 +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 tb = cm.mkToolBox()
- val untyped = reify(new Object().getClass).tree
- val typed = tb.typecheck(untyped)
- println(typed)
- println(showRaw(typed.tpe))
-}