summaryrefslogtreecommitdiff
path: root/test/pos/michel2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pos/michel2.scala')
-rw-r--r--test/pos/michel2.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pos/michel2.scala b/test/pos/michel2.scala
index 8f3f34e1ba..d5b61dda21 100644
--- a/test/pos/michel2.scala
+++ b/test/pos/michel2.scala
@@ -1,7 +1,7 @@
-trait A extends Object with {
+trait A extends Object {
def f : Int = 1
}
-trait B extends Object with A with {
+trait B extends Object with A {
override def f : Int = super.f
} \ No newline at end of file