aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/runtimeEval1.scala
blob: 0202dfd06322f17ccd97ef4672786b73fa9df7b0 (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 {
    val x = 2
    println(x)
  }.eval
}