mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
11 lines
254 B
Java
11 lines
254 B
Java
|
|
interface I<T> {}
|
|
abstract class X {
|
|
abstract <T> T foo(T x, T y);
|
|
|
|
void bar(
|
|
I<I<? super I<? super I<Throwable>>>> x,
|
|
I<I<? super I<? super I<Exception>>>> y){
|
|
I<? extends I<? super I<? super I<?>>>> foo = foo(x, y);
|
|
}
|
|
} |