5 lines
72 B
Text
5 lines
72 B
Text
int f() {
|
|
var x = int[] null;
|
|
x = new int[] {3,4};
|
|
return x[0];
|
|
}
|