summaryrefslogtreecommitdiff
path: root/test/files/pos/orderedpoints.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/orderedpoints.scala')
-rw-r--r--test/files/pos/orderedpoints.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/orderedpoints.scala b/test/files/pos/orderedpoints.scala
index 7e56a663fe..f972028bce 100644
--- a/test/files/pos/orderedpoints.scala
+++ b/test/files/pos/orderedpoints.scala
@@ -2,9 +2,9 @@ package test;
class Point1(x: int) extends Object with Ordered[Point1] {
val xCoord = x;
- def compareTo [b >: Point1 <% Ordered[b]](that: b): int = that match {
- case that1: Point1 => this.xCoord.compareTo(that1.xCoord)
- case _ => -that.compareTo(this)
+ def compare [b >: Point1 <% Ordered[b]](that: b): int = that match {
+ case that1: Point1 => this.xCoord.compare(that1.xCoord)
+ case _ => -that.compare(this)
}
}
class Point2(x: int, y: int) extends Point1(x) with Ordered[Point2] {}