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