mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
13 lines
259 B
Java
13 lines
259 B
Java
class Main {
|
|
void foo() throws ReflectiveOperationException {
|
|
bar().getField("<caret>");
|
|
}
|
|
|
|
Class<Test> bar() throws ClassNotFoundException { return (Class<Test>) Class.forName("Test"); }
|
|
}
|
|
|
|
class Test {
|
|
public int num;
|
|
public void method(){}
|
|
}
|