mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 07:11:04 +07:00
298c5663d5
GitOrigin-RevId: cd921c0446083fc0f81fdab57fd3b14b3d60f12b
14 lines
201 B
Java
14 lines
201 B
Java
// "Unroll loop" "true"
|
|
import java.util.Arrays;
|
|
|
|
class X {
|
|
enum MyEnum {
|
|
A, B, C;
|
|
}
|
|
|
|
void testLoop() {
|
|
<caret>for(MyEnum x : MyEnum.values()) {
|
|
System.out.println(x);
|
|
}
|
|
}
|
|
} |