aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3373.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t3373.scala')
-rw-r--r--tests/untried/pos/t3373.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/t3373.scala b/tests/untried/pos/t3373.scala
index 91768e201..b6594fb6c 100644
--- a/tests/untried/pos/t3373.scala
+++ b/tests/untried/pos/t3373.scala
@@ -5,7 +5,7 @@ class Entry(time: Long) {
object Test {
def extractTime(e: Entry) = e.getTime
- implicit val orderEntries = new Ordering[Entry] {
+ implicit val orderEntries: Ordering[Entry] = new Ordering[Entry] {
def compare(first: Entry, second: Entry) = extractTime(first) compare extractTime(second)
}
}