mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 22:17:05 +07:00
8 lines
115 B
Java
8 lines
115 B
Java
public enum Foo {
|
|
A, B, C;
|
|
|
|
void f() {
|
|
Foo foo;
|
|
foo = Foo.values()[0].switch<caret>
|
|
}
|
|
} |