more pointer arith tests
[cparser] / parsetest / shouldfail / pointerarith3.c
1 int main(void) {
2         void *a = 0;
3         a = a + 5;
4         return 0;
5 }