fix test
[cparser] / parsetest / if.c
1 int test1(int a) {
2         if (a);
3         return a;
4 }
5
6 int main(void)
7 {
8         return 0;
9 }