summaryrefslogtreecommitdiff
path: root/test/files/pos/t3373.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3373.scala')
-rw-r--r--test/files/pos/t3373.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/files/pos/t3373.scala b/test/files/pos/t3373.scala
deleted file mode 100644
index b4af3610bb..0000000000
--- a/test/files/pos/t3373.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-class Entry(time: Long) {
- def getTime: Long = time
-}
-
-object Test {
- def extractTime(e: Entry) = e.getTime
-
- implicit val orderEntries = new Ordering[Entry] {
- def compare(first: Entry, second: Entry) = extractTime(first) compare extractTime(second)
- }
-} \ No newline at end of file