summaryrefslogtreecommitdiff
path: root/test/files/neg/t9527b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t9527b.scala')
-rw-r--r--test/files/neg/t9527b.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/neg/t9527b.scala b/test/files/neg/t9527b.scala
new file mode 100644
index 0000000000..b40a4dca9e
--- /dev/null
+++ b/test/files/neg/t9527b.scala
@@ -0,0 +1,9 @@
+class C {
+ @annotation.implicitAmbiguous("msg A=${A}")
+ implicit def f[A](x: Int): String = "f was here"
+ implicit def g(x: Int): String = "f was here"
+ def test: Unit = {
+ implicitly[Int => String]
+ }
+}
+