add support for gcc nested functions
[cparser] / parsetest / shouldfail / pointerarith5.c
1 int main(void) {
2         void *a = 0;
3         a++;
4         return 0;
5 }