mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
15 lines
198 B
Java
15 lines
198 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;
|
|
} |