summaryrefslogtreecommitdiff
path: root/test/files/run/macro-term-declared-in-annotation/Impls_1.scala
blob: 1ea06de6799ad38f4f8c78691a6261240426a6c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.reflect.macros.{Context => Ctx}

object Impls {
  def foo(c: Ctx) = {
    import c.{prefix => prefix}
    import c.universe._
    val printPrefix = Apply(Select(Ident(definitions.PredefModule), TermName("println")), List(Literal(Constant("prefix = " + prefix))))
    val body = Block(List(printPrefix), Literal(Constant("this is deprecated")))
    c.Expr[String](body)
  }
}