2006-09-19 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / nested-func-5.c
blob5076dbd50497a72bf1cc8bfa90bee73bcf97205d
1 /* { dg-do compile } */
2 /* { dg-options "-fexceptions" } */
3 /* PR28516: ICE generating ARM unwind directives for nested functions. */
5 void ex(int (*)(void));
6 void foo(int i)
8 int bar(void)
10 return i;
12 ex(bar);