mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 19:49:20 +07:00
03db4748c0
GitOrigin-RevId: 5064b5ac2c2ec4390d9d082b7fded96e0c731732
8 lines
150 B
Java
8 lines
150 B
Java
// "Collapse into loop" "true"
|
|
class X {
|
|
void test() {
|
|
for (int i : new int[]{1, 2, 3, 5, 8}) {
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
} |