blob: 7f21bed54b30ca7674933af10aa8f62be1d3df2e [file] [log] [blame]
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
#ifndef NO_TRAMPOLINES
int f1()
{
{ int ___() { foo(1); } bar(___); }
return( { int ___() { foo(2); } bar(___);} );
}
int f2(int j)
{
{ int ___() { foo(j); } bar(___); }
return( { int ___() { foo(j); } bar(___);} );
}
#else
int x;
#endif