summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-java-crtp/Main_2.scala
blob: b9347869e439138f38502921f9c5baadc3e992c6 (plain) (blame)
1
2
3
4
5
6
7
8
object Test extends App {
  import scala.reflect.runtime.universe._
  val enum = typeOf[JavaSimpleEnumeration_1].baseClasses(1).asClass
  // make sure that the E's in Enum<E extends Enum<E>> are represented by the same symbol
  val e1 = enum.typeParams(0).asType
  val TypeBounds(_, TypeRef(_, _, List(TypeRef(_, e2: TypeSymbol, _)))) = e1.info
  println(e1, e2, e1 eq e2)
}