Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting7/ambiguousIDEA57278/pck/AmbiguousMethodCall.java
T
Anna.Kozlova df236e8c91 check compiler version (IDEA-163104)
compiler will be chosen as max(module compiler, project compiler)
2018-11-06 10:47:58 +01:00

13 lines
442 B
Java

package pck;
interface I{
<T extends Iterable<String> & Cloneable> void foo();
}
abstract class A {
abstract <T extends Iterable<String>> void foo();
<<error descr="'foo()' in 'pck.I' clashes with 'foo()' in 'pck.A'; both methods have same erasure, yet neither overrides the other"></error>T extends A & I> void bar(T x){
x.foo<error descr="Ambiguous method call: both 'A.foo()' and 'I.foo()' match">()</error>;
}
}