/* { dg-do compile } *//* { dg-require-effective-target trampolines } *//* { dg-options "-Wpadded" }/* The struct internally constructed for the nested function should not result in a warning from -Wpadded. */externintbaz(int(*) (int));intfoo(void){int k =3;intbar(int x) {return x + k;}returnbaz(bar);}