Files
2012-10-23 21:08:55 +02:00

9 lines
199 B
Java

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;
}
}