summaryrefslogtreecommitdiff
path: root/test/files/res/bug722/ScanBased.scala
blob: fcb853f96da8abbb76e1293d0c84df38fd47a068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package bug722;
trait ScanBased extends Parser {
 trait AdjacentLink extends Link {
    override def foo = super.foo;
 }
 trait WhitespaceLink extends AdjacentLink {
   override def foo = super.foo;
 }
}