aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/showraw_tree.scala
blob: fbd4c1dfaa25af39469cab9bbd523e8fd056b409 (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))
  println(showRaw(tree2.tree))
}