summaryrefslogtreecommitdiff
path: root/test/files/resident/bug743/ParserXXX.scala
blob: 6ecf13c1e14aaeb10d57b39e920f022199addcdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package bug743;
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;
  }
}