Consistently name the directories should_*.
[cparser] / parsetest / should_fail / pointerarith3.c
1 int main(void) {
2         void *a = 0;
3         a = a + 5;
4         return 0;
5 }