summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-java-crtp/Main_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reflection-java-crtp/Main_2.scala')
-rw-r--r--test/files/run/reflection-java-crtp/Main_2.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/run/reflection-java-crtp/Main_2.scala b/test/files/run/reflection-java-crtp/Main_2.scala
new file mode 100644
index 0000000000..fb5668f323
--- /dev/null
+++ b/test/files/run/reflection-java-crtp/Main_2.scala
@@ -0,0 +1,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.typeSignature
+ println(e1, e2, e1 eq e2)
+} \ No newline at end of file