add a test for the new anchor based error recovery
[cparser] / parsetest / shouldfail / missing.c
1 int test(int a) {
2         if (a > 3) {
3                 return 1;
4         else {
5                 return 2;
6         }
7 }
8
9
10 int test3(int b) {
11         return (b + ;
12 }