Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / Wduplicated-branches-10.c
blob8d918efcdc3a3c04d917c7a17daa44c5cbf0f860
1 /* PR c/64279 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wduplicated-branches" } */
5 #define DEBUG(msg) ;
7 void
8 f (int i)
10 if (i > 9)
12 DEBUG ("foo");
14 else
16 DEBUG ("bar");