blob: ffb43170e8c2f44f1cd1016e0623d0b6727cc825 [file] [log] [blame]
class A<S> {
void bar(A<? super Exception> x, A<? super Throwable> y){
foo(x, y);
}
<T> T foo(A<? super T> x, A<? super T> y){
return null;
}
}