summaryrefslogtreecommitdiff
path: root/test/files/pos/t3938/UseParent.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3938/UseParent.scala')
-rw-r--r--test/files/pos/t3938/UseParent.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t3938/UseParent.scala b/test/files/pos/t3938/UseParent.scala
new file mode 100644
index 0000000000..685d1a03a8
--- /dev/null
+++ b/test/files/pos/t3938/UseParent.scala
@@ -0,0 +1,7 @@
+object UseParent {
+ classOf[Parent[AnyRef]#I2]
+
+ // OKAY
+ classOf[Parent[AnyRef]#I3]
+ classOf[Parent.I5]
+}