(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr69186.c
       1  /* { dg-do compile } */
       2  
       3  static int a[10][2];
       4  int b;
       5  
       6  void
       7  fn1 ()
       8  {
       9    b = 0;
      10    for (; b < 6; b++)
      11      a[b][2] ^= 1;
      12  }