mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
163 B
Java
10 lines
163 B
Java
class Test<X extends Getter<?, ?> & Runnable> {}
|
|
|
|
interface Supplier<K> {
|
|
K get();
|
|
}
|
|
|
|
interface Getter<C, S extends C> extends Supplier<C> {
|
|
public S get();
|
|
}
|