(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
nested-func-5.c
       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 } */
       6  
       7  void ex(int (*)(void));
       8  void foo(int i)
       9  {
      10    int bar(void)
      11    {
      12      return i;
      13    }
      14    ex(bar);
      15  }