mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-12-28 23:33:43 +00:00
27 lines
662 B
C
27 lines
662 B
C
|
/* Test for C99 mixed declarations and code giving warnings, not error with
|
||
|
-Wdeclaration-after-statement. See also c9?-mixdecl-*. */
|
||
|
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
|
||
|
/* { dg-do run } */
|
||
|
/* { dg-options "-std=c99 -pedantic-errors -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);
|
||
|
}
|