cb7c3e991c894e5abed9612493e8069b48666f3a
[cparse] / tests / fail-function-call-1.c
1 /* function calls must be to functions or function pointer */
2
3 int fn(int x) {
4 return x();
5 }