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