blob: eb64128e74489498379046e3a4ddd61e61d7d00e [file] [log] [blame]
class C<T> {
void foo(C<C<?>> x) {
C<Object> c = bar(x);
}
<T> C<T> bar(C<? super C<T>> x){
return null;
}
}