summaryrefslogtreecommitdiff
path: root/test/files/pos/t3938/UseParent.scala
blob: 3f4c2298d5af1d74d31f4f6cdf0cc65377dd8dbe (plain) (blame)
1
2
3
4
5
6
7
object UseParent {
  classOf[Parent[AnyRef]#I2]
  
  // OKAY
  classOf[Parent[AnyRef]#I3]
  classOf[Parent.I5]
}