summaryrefslogtreecommitdiff
path: root/test/files/run/showraw_tree_ids.scala
blob: b56b8b447636160cca9ca7098725908170f769cc (plain) (blame)
1
2
3
4
5
6
7
8
import scala.reflect.runtime.universe._

object Test extends App {
  val tree1 = reify(new collection.immutable.HashMap[String, String])
  val tree2 = reify(new collection.mutable.HashMap[String, String])
  println(showRaw(tree1.tree, printIds = true))
  println(showRaw(tree2.tree, printIds = true))
}