summaryrefslogtreecommitdiff
path: root/test/pending/run/macro-expand-default/Impls_1.scala
blob: fefe8fc4e2d69891c2c78b26db0d3d120f8fadcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import scala.reflect.makro.{Context => Ctx}

object Impls {
  def foo(c: Ctx)(x: c.Expr[Int], y: c.Expr[Int]) = {
    import c.mirror._
    val sum = Apply(Select(x.tree, newTermName("$minus")), List(y.tree))
    val body = Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(sum))
    Expr[Unit](body)
  }
}