Files
2013-09-20 12:11:57 +04: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;
}
}