summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-eval-outside-reify/Test_2.scala
blob: 3c594aed756294ced9a49bef84d9744cc14c1520 (plain) (blame)
1
2
3
4
5
object Test extends App {
  import scala.reflect.mirror._
  val tree = Apply(Select(Ident("Macros"), newTermName("foo")), List(Literal(Constant(42))))
  println(tree.eval)
}