mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
20 lines
259 B
Java
20 lines
259 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getField("<caret>");
|
|
}
|
|
}
|
|
|
|
class Test extends Parent {
|
|
}
|
|
|
|
class Parent extends Grand {
|
|
public int shadowed;
|
|
}
|
|
|
|
class Grand extends GrandGrand {
|
|
public int shadowed;
|
|
}
|
|
|
|
class GrandGrand {
|
|
public int shadowed;
|
|
} |