summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-splice-outside-reify/Impls_Macros_1.scala
blob: f038d8714f1e85d4d3f834d11de43ac1e1576c1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.reflect.macros.blackbox.Context

object Impls {
  def foo(c: Context)(x: c.Expr[Int]) = {
    import c.universe._
    val x1 = c.Expr[Int](c.untypecheck(x.tree))
    c.Expr[Int](Literal(Constant(c.eval(x1))))
  }
}

object Macros {
  def foo(x: Int) = macro Impls.foo
}