- implemented GNU ?: operator (no ast2firm support yet
[cparser] / parsetest / shouldfail / paramredef.c
1
2 int func(int x) {
3         int x;
4
5         return x;
6 }