rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr41469.c

15 lines
115 B
C

/* { dg-options "-fexceptions" } */
void
af (void *a)
{
}
void
bf (void)
{
int i = 1;
char v[i];
af (v);
}