- add missing initialization of have_const_functions
[cparser] / parsetest / shouldfail / pointerarith2.c
1 int main(void) {
2         int (*a)(void) = main;
3         a += 2;
4         return 0;
5 }