blob: c419ec52be00020c5ebb0c54eb3828ac626bdfd4 [file] [log] [blame]
/* PR c/85318 */
/* { dg-do compile } */
/* { dg-options "-std=gnu11 -Wc90-c99-compat -pedantic-errors" } */
extern void bar (int);
void
foo (int n)
{
for (int i = 0; i < n; i++) /* { dg-warning "ISO C90 does not support .for. loop" } */
bar (i);
}