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)); foo(void)7int foo(void) 8 { 9 int k = 3; 10 int bar(int x) { 11 return x + k; 12 } 13 return baz(bar); 14 } 15