summaryrefslogtreecommitdiff
path: root/test/files/neg/t9286c.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t9286c.scala')
-rw-r--r--test/files/neg/t9286c.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/neg/t9286c.scala b/test/files/neg/t9286c.scala
new file mode 100644
index 0000000000..3df08dcfe6
--- /dev/null
+++ b/test/files/neg/t9286c.scala
@@ -0,0 +1,14 @@
+class M[_]
+trait T {
+ def foo(m: M[_ >: String]) = 42
+}
+
+object Test {
+ def t: T = new T {
+ def foo(m: M[_ >: Any]) = 0 // Expected: "same type after erasure"
+ }
+ def main(args: Array[String]): Unit = {
+ val m: M[String] = null
+ t.foo(m) // VeriyError: Duplicate method name&signature
+ }
+}