aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-reflective-mamd-normal-mi/Impls_1.scala
blob: e62db783b2eb516d31d9179dea0ee1d0b7f8e9d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.macros.blackbox.Context

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