aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/showraw_tree_types_typed.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/showraw_tree_types_typed.scala')
-rw-r--r--tests/pending/run/showraw_tree_types_typed.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/run/showraw_tree_types_typed.scala b/tests/pending/run/showraw_tree_types_typed.scala
deleted file mode 100644
index e24eac9f8..000000000
--- a/tests/pending/run/showraw_tree_types_typed.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.ToolBox
-
-object Test extends dotty.runtime.LegacyApp {
- val tb = runtimeMirror(getClass.getClassLoader).mkToolBox()
- val tree1 = reify(new collection.immutable.HashMap[String, String])
- val tree2 = reify(new collection.mutable.HashMap[String, String])
- println(showRaw(tb.typecheck(tree1.tree), printTypes = true))
- println(showRaw(tb.typecheck(tree2.tree), printTypes = true))
-}