summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reflective-ma-normal-mdmi/Impls_Macros_1.scala
blob: f6caf89dca0cf5f2dede76e946546d1ce9339863 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.reflect.makro.{Context => Ctx}

object Impls {
  def foo(c: Ctx)(x: c.Expr[Int]) = {
    import c.mirror._
    val body = Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(1))))
    Expr[Int](body)
  }
}

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