mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
12 lines
170 B
Java
12 lines
170 B
Java
class Main {
|
|
void foo() {
|
|
bar().getClass().getField("<caret>");
|
|
}
|
|
Test bar() { return null; }
|
|
}
|
|
|
|
class Test {
|
|
public int num;
|
|
public int num2;
|
|
int num3;
|
|
} |