summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr81779.c
blob: 6e796384a67a6511ad8a71018f3fc30f6548e6f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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;
}