CS153/hw5/hw5programs/tc_null_array_err.oat

6 lines
72 B
Text
Raw Permalink Normal View History

int f() {
var x = int[] null;
x = new int[] {3,4};
return x[0];
}