mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
19 lines
308 B
Java
19 lines
308 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 = <ref>EXIT_ON_CLOSE;
|
|
}
|
|
}.show();
|
|
}
|
|
}
|