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