summaryrefslogtreecommitdiff
path: root/test/files/resident/bug722/ScanBased.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/resident/bug722/ScanBased.scala')
-rw-r--r--test/files/resident/bug722/ScanBased.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/resident/bug722/ScanBased.scala b/test/files/resident/bug722/ScanBased.scala
new file mode 100644
index 0000000000..fcb853f96d
--- /dev/null
+++ b/test/files/resident/bug722/ScanBased.scala
@@ -0,0 +1,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;
+ }
+}
+