• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *
3  * Compile this with:
4  *    gcc -g -c -fno-eliminate-unused-debug-types test-enumerator-changes1-v1.c
5  */
6 
7 enum foo
8   {
9     E1_O,
10     E1_1,
11     E1_2
12   };
13 
14 void
foo()15 foo()
16 {
17 }
18