summaryrefslogblamecommitdiff
path: root/test/files/run/macro-def-path-dependent-c/Impls_Macros_1.scala
blob: 305146c48b4e1dd4570807341b71288ce0419c09 (plain) (tree)



















                                                                                                               
import scala.reflect.makro.{Context => Ctx}

trait Exprs {
  self: Universe =>

  class Expr[T]
}

trait Reifiers {
  self: Universe =>

}

trait Universe extends Exprs with Reifiers {
  def reify[T](expr: T): Expr[T] = macro Impls.reify[T]
}

object Impls {
  def reify[T](cc: Ctx{ type PrefixType = Universe })(expr: cc.Expr[T]): cc.Expr[cc.prefix.value.Expr[T]] = ???
}