Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / Wdangling-else-3.c
blob0dae0d54ec8486b1a17192bbcc191227e46019ff
1 /* { dg-do compile } */
2 /* { dg-options "-Wparentheses -Wno-dangling-else" } */
4 void bar (int);
5 void
6 foo (int a, int b)
8 if (a) /* { dg-bogus "suggest explicit braces to avoid ambiguous" } */
9 if (b)
10 bar (1);
11 else
12 bar (2);