PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / Wdangling-else-2.c
blob87ea1ab568792fd4b0743d0842440a31ccc8f46e
1 /* { dg-do compile } */
2 /* { dg-options "-Wparentheses" } */
4 void bar (int);
5 void
6 foo (int a, int b)
8 if (a) /* { dg-warning "suggest explicit braces to avoid ambiguous" } */
9 if (b)
10 bar (1);
11 else
12 bar (2);