Correct precedence of call expressions for printing.
[cparser] / parsetest / should_warn / cp_error025.c
1 struct s {
2         char x[30];
3 };
4
5 struct s x[] = { "blup" };
6
7 int main(void)
8 {
9         return x[0].x[0] != 'b';
10 }