mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
14 lines
283 B
Java
14 lines
283 B
Java
// "Unroll loop" "true-preview"
|
|
import java.util.Arrays;
|
|
|
|
class X {
|
|
void testLoop(int size) {
|
|
if (size == 5) {
|
|
System.out.println(0);
|
|
System.out.println(1);
|
|
System.out.println(2);
|
|
System.out.println(3);
|
|
System.out.println(4);
|
|
}
|
|
}
|
|
} |