summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-without-xmacros-b/Impls_1.scala
blob: 0b6fbe240e4873d739eabc060bfc50464019101d (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.universe._
    c.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.universe._
    c.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.universe._
    c.Expr(Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(3)))))
  }
}