aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t758.scala
blob: 160bf3717203900f6b226aaf5f32f07c6b7612d9 (plain) (tree)
1
2
3
4
5
6
7






                                   
trait A { type T; type M >: T }
trait B extends A {
  val x : String;
  val u : A { type T = B.this.T } ;
  type T = x.type;
  type M = u.M
}