summaryrefslogtreecommitdiff
path: root/test/files/pos/t4273.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t4273.scala')
-rw-r--r--test/files/pos/t4273.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t4273.scala b/test/files/pos/t4273.scala
index 9a942e8325..a4d37174ad 100644
--- a/test/files/pos/t4273.scala
+++ b/test/files/pos/t4273.scala
@@ -1,8 +1,8 @@
class A {
implicit def compareComparables[T](x: T)(implicit ord: Ordering[T]) = new ord.Ops(x)
-
+
class Bippy
implicit val bippyOrdering = new Ordering[Bippy] { def compare(x: Bippy, y: Bippy) = util.Random.nextInt }
-
+
(new Bippy) < (new Bippy)
} \ No newline at end of file