6_7_9_29_unknown_bound_nested_init.c (102B)
1 int test_main(void) { 2 int a[][2] = {1, 2, 3, 36}; 3 return a[0][0] + a[0][1] + a[1][0] + a[1][1]; 4 }