summaryrefslogtreecommitdiff
path: root/test/files/pos/t3373.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2010-05-04 13:53:09 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2010-05-04 13:53:09 +0000
commit7abeacab53286233d4b150e713ca253c08f38bfd (patch)
treee6f75af92ef5602d9170ba1ad91df20b20111b4c /test/files/pos/t3373.scala
parent6bc86b824867b9c0eaab79bcd798d05759a9167a (diff)
downloadscala-7abeacab53286233d4b150e713ca253c08f38bfd.tar.gz
scala-7abeacab53286233d4b150e713ca253c08f38bfd.tar.bz2
scala-7abeacab53286233d4b150e713ca253c08f38bfd.zip
closes #3373, #3177: validity check of an impli...
closes #3373, #3177: validity check of an implicit value should consider the value as well as its accessor review by odersky
Diffstat (limited to 'test/files/pos/t3373.scala')
-rw-r--r--test/files/pos/t3373.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/t3373.scala b/test/files/pos/t3373.scala
new file mode 100644
index 0000000000..b4af3610bb
--- /dev/null
+++ b/test/files/pos/t3373.scala
@@ -0,0 +1,11 @@
+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