aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr41469.c
blob: b89ee6391bb7f9563209fa712a932cff6dbbd8f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-options "-fexceptions" } */

void
af (void *a)
{
}
void
bf (void)
{
  int i = 1;
  char v[i];
  af (v);
}