1 /* 2 * 3 * Compile this with: 4 * gcc -g -c -fno-eliminate-unused-debug-types test-enumerator-changes1-v0.c 5 */ 6 7 enum foo 8 { 9 E1_O, 10 E1_1 11 }; 12 13 void foo()14 foo() 15 { 16 } 17