summaryrefslogtreecommitdiff
path: root/test/files/pos/bug664.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug664.scala')
-rwxr-xr-xtest/files/pos/bug664.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/bug664.scala b/test/files/pos/bug664.scala
new file mode 100755
index 0000000000..f3b8d06053
--- /dev/null
+++ b/test/files/pos/bug664.scala
@@ -0,0 +1,7 @@
+package test;
+abstract class Test;
+trait Test2 extends Test {
+ trait Foo extends super.Foo {
+ trait Bar extends super.Bar;
+ }
+}