aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg-with-implicits/t7519.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg-with-implicits/t7519.scala')
-rw-r--r--tests/untried/neg-with-implicits/t7519.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/untried/neg-with-implicits/t7519.scala b/tests/untried/neg-with-implicits/t7519.scala
new file mode 100644
index 000000000..aea0f35d8
--- /dev/null
+++ b/tests/untried/neg-with-implicits/t7519.scala
@@ -0,0 +1,18 @@
+class C {
+ implicit def conversion(m: Int)(implicit nada: Nothing): String = ???
+
+ class C { // rename class to get correct error, can't find implicit: Nothing.
+ locally(0 : String) // was: "value conversion is not a member of C.this.C"
+ }
+}
+
+object Test2 {
+ trait T; trait U
+ new T {
+ implicit def conversion(m: Int)(implicit nada: Nothing): String = ???
+
+ new U { // nested anonymous classes also share a name.
+ locally(0 : String) // was: "value conversion is not a member of U"
+ }
+ }
+}