CS153/hw5/hw5programs/tc_error_null.oat

5 lines
102 B
Text
Raw Normal View History

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