summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-10-09 19:24:26 +0000
committerPaul Phillips <paulp@improving.org>2011-10-09 19:24:26 +0000
commit2c1a1192ce19f84984eb52037fba5b26794ed3fa (patch)
tree07fde350be49609db48fe4bb8db26c1f7b42b6e4 /test
parent2adf5a0613c332045b65687a1f1e8a3fe8dd0222 (diff)
downloadscala-2c1a1192ce19f84984eb52037fba5b26794ed3fa.tar.gz
scala-2c1a1192ce19f84984eb52037fba5b26794ed3fa.tar.bz2
scala-2c1a1192ce19f84984eb52037fba5b26794ed3fa.zip
Fix for error printing regression.
One's devotion to aesthetics must not be allowed to trump one's commitment to clearly delineated tuplehood. Closes SI-5067, no review.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t5067.check6
-rw-r--r--test/files/neg/t5067.scala4
2 files changed, 10 insertions, 0 deletions
diff --git a/test/files/neg/t5067.check b/test/files/neg/t5067.check
new file mode 100644
index 0000000000..32491766d7
--- /dev/null
+++ b/test/files/neg/t5067.check
@@ -0,0 +1,6 @@
+t5067.scala:3: error: type mismatch;
+ found : ((Int, Int)) => Int
+ required: (Int, Int) => Int
+ override def tupled: (Int, Int) => Int = super.tupled
+ ^
+one error found
diff --git a/test/files/neg/t5067.scala b/test/files/neg/t5067.scala
new file mode 100644
index 0000000000..f8235c0e83
--- /dev/null
+++ b/test/files/neg/t5067.scala
@@ -0,0 +1,4 @@
+class Foo extends Function2[Int, Int, Int] {
+ def apply(x: Int, y: Int) = x + y
+ override def tupled: (Int, Int) => Int = super.tupled
+}