mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
12 lines
167 B
Java
12 lines
167 B
Java
class Main {
|
|
void foo() {
|
|
bar().getClass().getField("num2");
|
|
}
|
|
Test bar() { return null; }
|
|
}
|
|
|
|
class Test {
|
|
public int num;
|
|
public int num2;
|
|
int num3;
|
|
} |