mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-09 22:36:53 +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;
|
|
} |