test for error directive
[cparser] / parsetest / shouldfail / funcassign.c
1 int func(void)
2 {
3         return 5;
4 }
5
6 int main(void)
7 {
8         func = 54;
9         return 0;
10 }