add support for gcc nested functions
[cparser] / parsetest / shouldfail / bitfield.c
1 struct S {
2         int :45;
3         int x: -1;
4         int y: 0;
5         int z: 36364754;
6 };