- implemented GNU ?: operator (no ast2firm support yet
[cparser] / parsetest / shouldfail / call1.c
1 int test(int a) {
2         return a;
3 }
4
5 int main(void) {
6         return test(0, 2);
7 }