summaryrefslogtreecommitdiff
path: root/test/files/run/macro-declared-in-annotation/Impls_1.scala
blob: a11ee2907a04d39e85adde461053229cbd7ef3f3 (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), newTermName("println")), List(Literal(Constant("prefix = " + prefix))))
    val body = Block(List(printPrefix), Literal(Constant("this is deprecated")))
    c.Expr[String](body)
  }
}