summaryrefslogblamecommitdiff
path: root/test/files/pos/cls1.scala
blob: 20ac12d59aceb559287181e2ced2e9a7d3d2ef07 (plain) (tree)
1
2
3
4
5
6
7
8
9








                      
package test;

trait A {
  type T;

  trait B extends A {
    type T = A.this.T;
  }
}