blob: b60c9786285cfc5e34f7c3b00462e6e016f7b425 [file] [log] [blame]
class A<T> {
A<A<? super A<T>>> foo(){
return null;
}
void bar(A<?> x){
baz(x.foo());
}
<S> void baz(A<A<? super A<S>>> x){}
}