aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t7045.scala
blob: 305adeb3e1581acee804205b28346958f571740c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                  
 
import scala.reflect.runtime.universe._
import scala.reflect.runtime.{currentMirror => cm}

class C
class D { self: C => }

object Test extends App {
  val d = cm.staticClass("D")
  println(d.selfType)
  d.info
  println(d.selfType)
}