PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr81779.c
blob6e796384a67a6511ad8a71018f3fc30f6548e6f6
1 /* PR c/81779 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wdeclaration-after-statement" } */
5 #include <stdbool.h>
7 bool
8 f2 (char *p)
10 if (!p)
11 return false;
13 bool ret = true; /* { dg-warning "ISO C90 forbids mixed declarations and code" } */
14 return ret;