* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / BUG5.c
blob9bed7136f59ce70d6928a93f2021d0fa98248cb0
1 enum bar
3 one,
4 two
5 };
7 enum bar foo;
9 void bar()
11 switch (foo)
13 case one:
14 case two:
15 printf ("one to two\n");
16 break;