Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020220-2.c
blob95606703cc50185f8e2711334fe2569149ca172b
1 /* PR c/4697
2 Test whether operand has no effect warning is given for compound
3 expression. */
4 /* { dg-do compile } */
5 /* { dg-options "-O2 -Wunused" } */
7 int b;
8 int foo (int a)
10 a = a + 1, 5 * b; /* { dg-warning "right-hand operand of comma expression has no effect" } */
11 return a;