mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
10 lines
198 B
Java
10 lines
198 B
Java
class Main {
|
|
void foo() throws NoSuchMethodException {
|
|
clazz().getMethod("<caret>");
|
|
}
|
|
private Class<? extends Test> clazz() {return Test.class;}
|
|
}
|
|
|
|
class Test {
|
|
public void method(){}
|
|
} |