mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 00:36:13 +07:00
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
10 lines
243 B
Java
10 lines
243 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]);
|
|
}
|
|
}
|
|
} |