summaryrefslogtreecommitdiff
path: root/test/files/neg/t8024b.scala
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.scala
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.scala')
-rw-r--r--test/files/neg/t8024b.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/files/neg/t8024b.scala b/test/files/neg/t8024b.scala
new file mode 100644
index 0000000000..cf3d496365
--- /dev/null
+++ b/test/files/neg/t8024b.scala
@@ -0,0 +1,17 @@
+package p
+
+trait NRoot[A]
+
+object FastComplex {
+ final def sqrt(x: Double): Double = Math.sqrt(x)
+ final def sqrt[A](a: A)(implicit ev: NRoot[A]): A = ???
+
+ object Inner {
+ import java.lang.Math.sqrt
+
+ // wrong message:
+ // error: reference to sqrt is ambiguous;
+ // it is both defined in object FastComplex and imported subsequently by
+ sqrt(0d)
+ }
+}