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