First version committed to git
[zpugcc/jano.git] / toolchain / gcc / gcc / testsuite / gcc.c-torture / unsorted / 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;