libstdc++: Implement std::formatter<std::thread::id> without <sstream> [PR115099]
[official-gcc.git] / gcc / testsuite / gcc.dg / nested-func-5.c
blob591f8a2c1a9930d23bd19689f8114e7aa0611108
1 /* { dg-do compile } */
2 /* { dg-options "-fexceptions" } */
3 /* PR28516: ICE generating ARM unwind directives for nested functions. */
4 /* { dg-require-effective-target trampolines } */
5 /* { dg-require-effective-target exceptions } */
7 void ex(int (*)(void));
8 void foo(int i)
10 int bar(void)
12 return i;
14 ex(bar);