blob: 8cfbc7d3a466ee45c6496af5bafd5cc3499594fa [file] [log] [blame]
package pck;
class A<T> {}
interface IA{
void foo(A<?> x);
}
interface IB{
<T> void foo(A<T> x);
}
class C {
<<error descr="'foo(A<T>)' in 'pck.IB' clashes with 'foo(A<?>)' in 'pck.IA'; both methods have same erasure, yet neither overrides the other"></error>T extends IA & IB> void bar(T x, A<String> y){
x.foo<error descr="Ambiguous method call: both 'IA.foo(A<?>)' and 'IB.foo(A<String>)' match">(y)</error>;
}
}