]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/Wc90-c99-compat-10.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / Wc90-c99-compat-10.c
CommitLineData
e4d44a37
MP
1/* PR c/85318 */
2/* { dg-do compile } */
3/* { dg-options "-std=gnu11 -Wc90-c99-compat -pedantic-errors" } */
4
5extern void bar (int);
6
7void
8foo (int n)
9{
10 for (int i = 0; i < n; i++) /* { dg-warning "ISO C90 does not support .for. loop" } */
11 bar (i);
12}