blob: 70be0d2c31baf41d4a9a33b0f1d7ec3b416dbd10 [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){}
}