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

object Impls {
  def foo[U](c: Ctx)(x: c.Expr[U])(evidence: c.Expr[Numeric[U]]) = {
    import c.mirror._
    val plusOne = Apply(Select(evidence.tree, newTermName("plus")), List(x.tree, Literal(Constant(1))))
    val body = Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(plusOne))
    Expr[Unit](body)
  }
}