(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr77754-1.c
       1  // { dg-require-effective-target alloca }
       2  /* PR c/77754 */
       3  
       4  int fn3();
       5  
       6  void fn4(int[][fn3 ()]);
       7  
       8  void fn1() {
       9    void fn2(int[][fn3 ()]);
      10    int a[10][fn3 ()];
      11    fn4 (a);
      12  }