4 lines
48 B
Text
4 lines
48 B
Text
|
|
void f(int[] x, int[]? y) {
|
||
|
|
y = x;
|
||
|
|
return;
|
||
|
|
}
|