mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
10 lines
200 B
Java
10 lines
200 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;
|
|
}
|
|
}
|