fix for handling of for scope handling
[cparser] / parsetest / implicit.c
1 void test1() {
2         puts("Hello");
3 }
4
5 void test2() {
6         for(int i = rand(); i < 20; ++i)
7                 break;
8 }
9
10 int main(void) {
11         test1();
12         test2();
13         return 0;
14 }