- when parsing compound types, do NOT destroy old declarations if
[cparser] / parsetest / implicit.c
1 void test1() {
2         puts("Hello");
3 }
4
5 void test2() {
6         int i;
7         for(i = rand(); i < 20; ++i)
8                 break;
9 }
10
11 int main(void) {
12         test1();
13         test2();
14         return 0;
15 }