summaryrefslogtreecommitdiff
path: root/test/files/pos/traits.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/traits.scala')
-rw-r--r--test/files/pos/traits.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/traits.scala b/test/files/pos/traits.scala
index bd64d7215a..3c6f9437a5 100644
--- a/test/files/pos/traits.scala
+++ b/test/files/pos/traits.scala
@@ -20,8 +20,8 @@ object Test {
trait BorderedColoredShape extends Shape with Bordered with Colored {
override def equals(other: Any) = other match {
case that: BorderedColoredShape => (
- super.equals(that) &&
- super[Bordered].equals(that) &&
+ super.equals(that) &&
+ super[Bordered].equals(that) &&
super[Colored].equals(that))
case _ => false
}