]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c99-fordecl-3.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c99-fordecl-3.c
CommitLineData
efcc66f0
JM
1/* Test for C99 declarations in for loops. Test constraints: struct
2 and union tags can't be declared there (affirmed in response to
3 DR#277). */
4/* Origin: Joseph Myers <joseph@codesourcery.com> */
5/* { dg-do compile } */
6/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
7
8void
9foo (void)
10{
ad0637fd 11 for (struct s { int p; } *p = 0; ;) /* { dg-error "'struct s' declared in 'for' loop initial declaration" } */
efcc66f0 12 ;
ad0637fd 13 for (union u { int p; } *p = 0; ;) /* { dg-error "'union u' declared in 'for' loop initial declaration" } */
efcc66f0
JM
14 ;
15}