summaryrefslogblamecommitdiff
path: root/test/files/run/showraw_mods.scala
blob: a10e4821dc9aaa1b9868481a6e2d949b6c93b561 (plain) (tree)
1
2
3
4
5
6





                                                                                  
import scala.reflect.runtime.universe._

object Test extends App {
  val tree = reify{trait C { private[this] val x = 2; var y = x; lazy val z = y }}
  println(showRaw(tree.tree))
}