mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
12 lines
180 B
Java
12 lines
180 B
Java
interface I<T>{}
|
|
interface A extends I<A[]>{}
|
|
interface B extends I<B[]>{}
|
|
|
|
abstract class c{
|
|
abstract <T> T baz(T x, T y);
|
|
|
|
void bar(A x, B y){
|
|
baz(x, y);
|
|
}
|
|
}
|