summaryrefslogtreecommitdiff
path: root/test/files/pos/t3374.scala
blob: 4c0293181df5e9fada0bef3dd2add8411f08af50 (plain) (blame)
1
2
3
4
5
6
trait Parent {
 type Test[A, H[B <: A]]
}
trait Sub extends Parent {
 type Test[AS, HS[B <: AS]] = AS
}