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

10 lines
177 B
Java

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