/* { 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){intk=3;intbar(intx){returnx+k;}returnbaz(bar);}