mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
testdata for IDEA-57410
This commit is contained in:
+10
@@ -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> {}
|
||||
Reference in New Issue
Block a user