summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-without-xmacros-a/Impls_1.scala
blob: e6cee46e850450e82a2206a66e2a43accf1c7e0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import scala.reflect.makro.{Context => Ctx}

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

  def bar_impl(c: Ctx)(x: c.Expr[Int]): c.Expr[Int] = {
    import c.mirror._
    Expr(Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(2)))))
  }

  def quux_impl(c: Ctx)(x: c.Expr[Int]): c.Expr[Int] = {
    import c.mirror._
    Expr(Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(3)))))
  }
}