aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/pos/t2994b.scala
blob: 8b5eb969241907c76dcea8780a86fc8fde9bb2d6 (plain) (tree)
1
2
3
4
5
6
7






                                                     
object Test {
  trait Bar[X[_]]
  trait Baz[S[_] <: Bar[S]] {
    type Apply[T]
  }
  trait Foo[V[_] <: Bar[V]] extends Bar[Baz[V]#Apply]
}