(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr39712.c
       1  /* { dg-do compile } */
       2  
       3  int is_table[2][16];
       4  int is_table_lsf[2][2][16];
       5  void compute_stereo()
       6  {
       7    int (*is_tab)[16];
       8    is_tab = is_table;
       9  }