summaryrefslogtreecommitdiff
path: root/test/files/pos/thistypes.scala
blob: 26339e07c424bb11e1348904e697602a33f5d15d (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;
}