mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
200 B
Java
15 lines
200 B
Java
// "Create enum constant 'A'" "true"
|
|
|
|
public enum E {
|
|
A;
|
|
|
|
public static final Foo QQQ;
|
|
|
|
static {
|
|
QQQ = new Foo((A.BAR));
|
|
}
|
|
}
|
|
|
|
class Bar {
|
|
public static final int BAR = 0;
|
|
} |