mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
8 lines
203 B
Java
8 lines
203 B
Java
abstract class A<K extends A<?>> {
|
|
void bar(K x) {
|
|
String s = foo(x).toLowerCase();
|
|
}
|
|
|
|
abstract <T extends A<S>, S extends A<?>> void foo(A<T> x);
|
|
abstract String foo(Object x);
|
|
} |