summaryrefslogblamecommitdiff
path: root/test/files/run/t6394a/Macros_1.scala
blob: 376d85ba6732e948687bb44925a28bfb81bea7b2 (plain) (tree)
1
2
3
4
5
6
7
                                            

               
                                      

                       
                                                                    




                            
import scala.reflect.macros.blackbox.Context

object Macros {
  def impl(c:Context): c.Expr[Any] = {
    import c.universe._

    val selfTree = This(c.enclosingImpl.symbol.asModule.moduleClass)
    c.Expr[AnyRef](selfTree)
  }

  def foo: Any = macro impl
}