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