mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-14 18:41:22 +07:00
9 lines
110 B
Java
9 lines
110 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getMethod("method");
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
public void method(){}
|
|
} |