summaryrefslogtreecommitdiff
path: root/test/disabled/neg/macro-without-xmacros-a/Impls_1.scala
blob: 2493c81c9590decd238417534cc746aa2ddb9f2f (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.mirror.Tree = {
    import c.mirror._
    Apply(Select(x.tree, newTermName("$plus")), List(Literal(Constant(1))))
  }

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

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