mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
12 lines
222 B
Java
12 lines
222 B
Java
// "Unroll loop" "true-preview"
|
|
import java.util.Arrays;
|
|
|
|
class X {
|
|
void test() {
|
|
int[] array = new int[10];
|
|
Arrays.setAll(array, i -> i);
|
|
<caret>for (int i : array) {
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
} |