summaryrefslogtreecommitdiff
path: root/test/files/neg/t8024b.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-12-02 16:13:57 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-12-12 15:06:22 +0100
commite6cee2627555f379ef6cd8cd554a1079a7e074aa (patch)
tree3f9387297af328e26663150dd68950007a84eb46 /test/files/neg/t8024b.check
parenta443bae8392b934bf379b3580fd01c88ed8014c2 (diff)
downloadscala-e6cee2627555f379ef6cd8cd554a1079a7e074aa.tar.gz
scala-e6cee2627555f379ef6cd8cd554a1079a7e074aa.tar.bz2
scala-e6cee2627555f379ef6cd8cd554a1079a7e074aa.zip
SI-8024 Fix inaccurate message on overloaded ambiguous ident
`Symbol#owner` of an overloaded symbol doesn't necessarily correspond to the owner of any of the alternatives, and as such it shouldn't be used in error message. neg/t8024.scala actually represents a progression since 2.10.3; the ambiguity was not reported. I bisected the change to https://github.com/scala/scala/pull/1554.
Diffstat (limited to 'test/files/neg/t8024b.check')
-rw-r--r--test/files/neg/t8024b.check6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/neg/t8024b.check b/test/files/neg/t8024b.check
new file mode 100644
index 0000000000..9cd89bca53
--- /dev/null
+++ b/test/files/neg/t8024b.check
@@ -0,0 +1,6 @@
+t8024b.scala:15: error: reference to sqrt is ambiguous;
+it is both defined in object FastComplex and imported subsequently by
+import java.lang.Math.sqrt
+ sqrt(0d)
+ ^
+one error found