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




                                                  
                                             



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

class A { def foo = ??? }

object Test extends dotty.runtime.LegacyApp {
  val c = cm.classSymbol(classOf[A])
  println(c)
  println(c.fullName)
  println(c.info)
}