summaryrefslogblamecommitdiff
path: root/test/files/res/t743/ParserXXX.scala
blob: d132bdbf1d2ca2209a023b34be14432b3e664646 (plain) (tree)
1
2
3
4
5
6
             
                 

                  
                                            
                      








                                   
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;
  }
}