aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t5276_1a.scala
blob: ad76b2e69fcff94007c275eb81da92762074fbaf (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.runtime.universe._
import scala.tools.reflect.Eval

object Test extends dotty.runtime.LegacyApp {
  reify {
    lazy val x = 2
    println(x)
  }.eval
}