6_7_9_16_enum_designator.c (82B)
1 int test_main(void) { 2 enum { X = 2 }; 3 int a[4] = {[X] = 42}; 4 return a[X]; 5 }