summaryrefslogtreecommitdiff
path: root/test/files/res/t743/ParserXXX.scala
blob: fd584b972a0b83f2a3c61decaf68820bd0d3db79 (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;
  }
}