summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reflective-mamd-normal-mi/Impls_1.scala
blob: 5d7e0777312bf5fd70cd8a8b7393f9d81e8bacc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.macros.{Context => Ctx}

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