mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 03:37:58 +07:00
14 lines
297 B
Java
14 lines
297 B
Java
// "Replace with toArray" "true"
|
|
|
|
import java.util.Arrays;
|
|
|
|
public class Test {
|
|
public void test(int bound) {
|
|
Integer[][] arr = new Integer[bound][];
|
|
for(int <caret>i = 0; i < arr.length; i++) {
|
|
arr[i] = new Integer[] {i};
|
|
}
|
|
System.out.println(Arrays.toString(arr));
|
|
}
|
|
}
|