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