Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / c99-fordecl-3.c
blobc51a5551a998dbefe34efc329456dd31a9153d9b
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" } */
8 void
9 foo (void)
11 for (struct s { int p; } *p = 0; ;) /* { dg-error "error: 'struct s' declared in 'for' loop initial declaration" } */
13 for (union u { int p; } *p = 0; ;) /* { dg-error "error: 'union u' declared in 'for' loop initial declaration" } */