summaryrefslogtreecommitdiff
path: root/test/files/pos/t3373.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2010-05-04 16:21:13 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2010-05-04 16:21:13 +0000
commita01b81352f9f6bec4277044b3265dab79f545441 (patch)
treebd39f35299e3daaf79c3a3ac8eb1ef5b9477c670 /test/files/pos/t3373.scala
parent7868f336ec5d9e3b64f83925ec345bd794953284 (diff)
downloadscala-a01b81352f9f6bec4277044b3265dab79f545441.tar.gz
scala-a01b81352f9f6bec4277044b3265dab79f545441.tar.bz2
scala-a01b81352f9f6bec4277044b3265dab79f545441.zip
revert commit that probably broke the build due...
revert commit that probably broke the build due to a bug in closure elimination revert commit that reverted the commit that probably didn't break the build
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