another test
[cparser] / parsetest / shouldfail / enum_forward.c
1 enum Bla;
2
3 int test(enum Bla bla) {
4         return bla;
5 }
6
7 enum Bla {
8         Blo
9 };