summaryrefslogtreecommitdiff
path: root/test/files/pos/thistypes.scala
blob: 7319cc1ecb4bb7f171ca853895c1d847aea47b97 (plain) (blame)
1
2
3
4
5
6
7
8
trait B {
  trait I {}
  def foo: B.this.I;
}

trait C extends B {
  def foo: C.this.I;
}