(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
20030331-2.c
       1  // { dg-options "" }
       2  /* { dg-require-effective-target alloca } */
       3  
       4  extern int printf (const char *, ...);
       5  
       6  int foo() {
       7    int yd;
       8    float in[1][yd];
       9   
      10    void bar() {
      11      printf("%p\n",in[0]);
      12    }
      13  }