summaryrefslogtreecommitdiff
path: root/test/files/res/t743/ParserXXX.scala
blob: d132bdbf1d2ca2209a023b34be14432b3e664646 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package t743;
trait ParserXXX {
  val foo = null;
  trait NodeImpl {
    trait Link extends ParserXXX.this.Link {
      val from = null;
    }
  }
  trait Link {
    val to0 = null;
  }
  trait IsLinked extends NodeImpl {
    trait Link extends super.Link;
  }
}