enhanced
[cparser] / parsetest / shouldfail / paramerror.c
1 int func1(int)
2 {
3         return 0;
4 }
5
6 void func2(int x) {
7         int x;
8         {
9                 int x;
10         }
11 }