6_7_9_invalid_array_designator.c (77B)
1 int test_main(void) { 2 int i = 1; 3 int a[3] = {[i] = 42}; 4 return a[1]; 5 }