mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 07:32:21 +07:00
GitOrigin-RevId: b0d9510a97e4d5af5c6dea8e640938268b7874c4
8 lines
106 B
Java
8 lines
106 B
Java
// "Create enum constant 'EEE'" "true"
|
|
|
|
enum E {
|
|
AAA, EEE;
|
|
void t() {
|
|
int t = EEE;
|
|
}
|
|
} |