mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
12 lines
134 B
Java
12 lines
134 B
Java
// "Create enum constant 'EEE'" "true"
|
|
class Other {
|
|
public Other() {
|
|
MyEnum eee = MyEnum.EEE;
|
|
}
|
|
}
|
|
|
|
enum MyEnum {
|
|
EEE
|
|
|
|
}
|