CS153/hw5/hw5programs/tc_correct_null.oat

5 lines
99 B
Text
Raw Normal View History

int program(int argc, string[] argv) {
var x = new (int[])[] { int[] null };
return x[0][1];
}