mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 21:09:47 +07:00
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
11 lines
282 B
Java
11 lines
282 B
Java
// "Collapse into loop" "true-preview"
|
|
class X {
|
|
void test(int[] data) {
|
|
for (int i = 0; i < 6; i++) {
|
|
System.out.print("data["+ i +"]");
|
|
System.out.println("=");
|
|
System.out.println(data[i]);
|
|
}
|
|
System.out.print("data["+6+"]");
|
|
}
|
|
} |