(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr69932.c
       1  /* { dg-do compile } */
       2  
       3  int a;
       4  void fn1() {
       5    int b = 4;
       6    short c[4];
       7    c[b] = c[a];
       8    if (c[2]) {}
       9  
      10  }