aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/showraw_tree_types_untyped.scala
blob: 87dfd72420e6df5be1a1350463c36490eca0e857 (plain) (blame)
1
2
3
4
5
6
7
8
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, printTypes = true))
  println(showRaw(tree2.tree, printTypes = true))
}