summaryrefslogtreecommitdiff
path: root/test/files/neg/t3873.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t3873.scala')
-rw-r--r--test/files/neg/t3873.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/neg/t3873.scala b/test/files/neg/t3873.scala
new file mode 100644
index 0000000000..e7815f0937
--- /dev/null
+++ b/test/files/neg/t3873.scala
@@ -0,0 +1,12 @@
+class A {
+ class B
+ def b: B = new B
+}
+
+object Test {
+ def wrongf(a: A)(b: a.B): a.B = b
+
+ val a = new A
+ wrongf(a)(a.b)
+ wrongf(new A)(a.b) // should not compile -- TODO: improve error message? the "a" is ambiguous
+} \ No newline at end of file