- implemented GNU ?: operator (no ast2firm support yet
[cparser] / parsetest / shouldfail / pointerarith2.c
1 int main(void) {
2         int (*a)(void) = main;
3         a += 2;
4         return 0;
5 }