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