Consistently name the directories should_*.
[cparser] / parsetest / should_fail / funcassign.c
1 int func(void)
2 {
3         return 5;
4 }
5
6 int main(void)
7 {
8         func = 54;
9         return 0;
10 }