mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
9 lines
199 B
Java
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;
|
|
}
|
|
} |