Correct precedence of call expressions for printing.
[cparser] / parsetest / should_warn / div_by_zero.c
1 float NaN = 0.0/0.0;
2
3 int main(int argc, char *argv[]) {
4         return argc / 0;
5 }