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