aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/uninit-pr101573.c
blob: a574844b7914c3db55c9d2593b3079d2299c54fa (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O0 -Wuninitialized" } */

int main(int argc, char **argv)
{
  int a;
  for(; a < 5; ++a) /* { dg-warning "is used uninitialized" } */
    ;
  return  0;
}