(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vla-stexp-3.c
       1  /* PR91038 */
       2  /* { dg-do compile } */
       3  /* { dg-options "" } */
       4  
       5  
       6  void bar(void)
       7  {
       8  	({ int N = 2; int (*x)[9][N] = 0; x; })[1];
       9  	({ int N = 2; int (*x)[9][N] = 0; x; })[0];	// should not ice
      10  }
      11