aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wdeclaration-after-statement-1.c
blob: 64a173a9c4a7f70c7912d54bd179e27c3501daa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Test for -Wdeclaration-after-statement emitting warnings when no
   standard-specifying option is given.  See also c9?-mixdecl-*.  */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do run } */
/* { dg-options "-Wdeclaration-after-statement" } */

extern void abort (void);
extern void exit (int);

int
main (void)
{
  int i = 0;
  if (i != 0)
    abort ();
  i++;
  if (i != 1)
    abort ();
  int j = i;				/* { dg-warning "" "declaration after statement" } */
  if (j != 1)
    abort ();
  struct foo { int i0; } k = { 4 };	/* { dg-warning "" "declaration after statement" } */
  if (k.i0 != 4)
    abort ();
  exit (0);
}