summaryrefslogtreecommitdiff
path: root/test/files/res/t722/ScanBased.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/res/t722/ScanBased.scala')
-rw-r--r--test/files/res/t722/ScanBased.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/res/t722/ScanBased.scala b/test/files/res/t722/ScanBased.scala
new file mode 100644
index 0000000000..8e55b800ac
--- /dev/null
+++ b/test/files/res/t722/ScanBased.scala
@@ -0,0 +1,10 @@
+package t722;
+trait ScanBased extends Parser {
+ trait AdjacentLink extends Link {
+ override def foo() = super.foo;
+ }
+ trait WhitespaceLink extends AdjacentLink {
+ override def foo() = super.foo;
+ }
+}
+