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