summaryrefslogtreecommitdiff
path: root/test/files/run/macro-def-path-dependent-b/Impls_Macros_1.scala
blob: cf9f9ebd0ed00202d031932bb309e8abb013eba0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import scala.reflect.macros.{Context => Ctx}

trait Exprs {
  self: Universe =>

  class Expr[T]
}

trait Reifiers {
  self: Universe =>

}

trait Universe extends Exprs with Reifiers {
  def reify[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]] = ???
}