blob: 6e796384a67a6511ad8a71018f3fc30f6548e6f6 [file] [log] [blame]
/* PR c/81779 */
/* { dg-do compile } */
/* { dg-options "-Wdeclaration-after-statement" } */
#include <stdbool.h>
bool
f2 (char *p)
{
if (!p)
return false;
bool ret = true; /* { dg-warning "ISO C90 forbids mixed declarations and code" } */
return ret;
}