(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr41469.c
       1  /* { dg-options "-fexceptions" } */
       2  /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
       3  /* { dg-require-effective-target exceptions } */
       4  
       5  void
       6  af (void *a)
       7  {
       8  }
       9  void
      10  bf (void)
      11  {
      12    int i = 1;
      13    char v[i];
      14    af (v);
      15  }
      16