summaryrefslogtreecommitdiff
path: root/src/library/scala/reflect/base/Mirrors.scala
blob: 50866ef0006324484d6afcea5bf480d466b4c1f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package scala.reflect
package base

trait Mirrors {
  self: Universe =>

  /** .. */
  type Mirror >: Null <: MirrorOf[self.type]

  /** .. */
  val rootMirror: Mirror
}