mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
17 lines
227 B
Java
17 lines
227 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getDeclaredField("<caret>");
|
|
}
|
|
}
|
|
|
|
class Test extends Parent {
|
|
public int num;
|
|
int num3;
|
|
private int num5;
|
|
}
|
|
|
|
class Parent {
|
|
public int num2;
|
|
int num4;
|
|
private int num6;
|
|
} |