blob: a566b5b0cf605211b0e95fd347f586a45f55fc74 [file] [log] [blame]
class A<T> {
A<A<? extends T>> foo(){
return null;
}
void bar(A<?> x){
baz<error descr="'baz(A<A<?>>)' in 'A' cannot be applied to '(A<A<capture<?>>>)'">(x.foo())</error>;
}
<S> void baz(A<A<? extends S>> x){}
}