mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-13 09:34:32 +07:00
15 lines
296 B
Java
15 lines
296 B
Java
class Test {
|
|
static {
|
|
Class<Test> testClass = get(Test.class);
|
|
foo(testClass);
|
|
Test f = foo(testClass);
|
|
}
|
|
|
|
static <E> Class<E> get(Class<? super E> value) {
|
|
return null;
|
|
}
|
|
|
|
static <E> E foo(Class<? super E> value) {
|
|
return null;
|
|
}
|
|
} |