aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/showraw_mods.scala
blob: 872685c37ec9686e9ffa03d84bb2593cae1b318b (plain) (blame)
1
2
3
4
5
6
import scala.reflect.runtime.universe._

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