mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
19 lines
310 B
Java
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();
|
|
}
|
|
}
|