summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-java-crtp.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reflection-java-crtp.check')
-rw-r--r--test/files/run/reflection-java-crtp.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/reflection-java-crtp.check b/test/files/run/reflection-java-crtp.check
index 0f30b453c0..9fd305a7af 100644
--- a/test/files/run/reflection-java-crtp.check
+++ b/test/files/run/reflection-java-crtp.check
@@ -14,7 +14,7 @@ scala> // make sure that the E's in Enum<E extends Enum<E>> are represented
scala> val e1 = enum.typeParams(0).asType
e1: reflect.runtime.universe.TypeSymbol = type E
-scala> val TypeBounds(_, ExistentialType(_, TypeRef(_, _, List(TypeRef(_, e2: TypeSymbol, _))))) = e1.typeSignature
+scala> val TypeBounds(_, TypeRef(_, _, List(TypeRef(_, e2: TypeSymbol, _)))) = e1.typeSignature
e2: reflect.runtime.universe.TypeSymbol = type E
scala> println(e1 eq e2)