Files
2020-10-07 07:46:28 +00:00

9 lines
133 B
Java

enum Test {
A, B;
void f<caret>oo() {
for (Test v : values()) {
System.out.println(v);
}
}
}