mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
10 lines
177 B
Java
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;
|
|
}
|
|
}
|