(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr71477.c
       1  /* { dg-do compile } */
       2  
       3  #define N 6
       4  int a;
       5  void fn1()
       6  {
       7    int k = 0;
       8    for (; k < N;)
       9      for (a = 0; a < N; k++)
      10        a = k + N;
      11  }