aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/showraw_tree_kinds.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/showraw_tree_kinds.scala')
-rw-r--r--tests/pending/run/showraw_tree_kinds.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/pending/run/showraw_tree_kinds.scala b/tests/pending/run/showraw_tree_kinds.scala
deleted file mode 100644
index 0891015ac..000000000
--- a/tests/pending/run/showraw_tree_kinds.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-import scala.reflect.runtime.universe._
-
-object Test extends dotty.runtime.LegacyApp {
- val tree1 = reify(new collection.immutable.HashMap[String, String])
- val tree2 = reify(new collection.mutable.HashMap[String, String])
- println(showRaw(tree1.tree, printKinds = true))
- println(showRaw(tree2.tree, printKinds = true))
-}