summaryrefslogtreecommitdiff
path: root/test/files/pos/annotated-original/M_1.scala
blob: 01654e02cf1b8181f1d5d9a2b4e0357b05806c55 (plain) (blame)
1
2
3
4
5
6
7
import language.experimental.macros
import reflect.macros.Context

object M {
  def impl(c: Context)(a: c.Expr[Any]) = c.Expr[Any](c.resetLocalAttrs(a.tree))
  def m(a: Any) = macro impl
}