Files
openide/java/java-tests/testData/psi/resolve/var/ShadowFieldsInHierarchy2.java
2019-01-02 16:35:41 +01:00

19 lines
310 B
Java

interface Base {
public static final int EXIT_ON_CLOSE = 3;
}
class E implements Base {
public static final int EXIT_ON_CLOSE = 3;
void show(){}
}
class S {
private void h() {
new E() {
{
int o = <caret>EXIT_ON_CLOSE;
}
}.show();
}
}