testdata for IDEA-57410

This commit is contained in:
anna
2012-10-23 21:08:39 +02:00
parent faca3a20d6
commit b704249a4c
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,10 @@
interface IA {
<T> void a(Iterable<String> x);
}
interface IB {
<T> void a(Iterable x);
}
<error descr="'a(Iterable)' in 'IB' clashes with 'a(Iterable<String>)' in 'IA'; both methods have same erasure, yet neither overrides the other">abstract class C implements IA, IB</error> {}