(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
20050607-1.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target trampolines } */
       3  /* { dg-options "-Wpadded" }
       4  /* The struct internally constructed for the nested function should
       5     not result in a warning from -Wpadded. */
       6  extern int baz(int (*) (int));
       7  int foo(void)
       8  {
       9    int k = 3;
      10    int bar(int x) {
      11      return x + k;
      12    }
      13    return baz(bar);
      14  }