blob: 8c97ae837877d14b64fff2580da854a8a4237bee [file] [log] [blame]
/* APPLE LOCAL begin testsuite nested functions */
/* { dg-options "-fnested-functions" } */
/* APPLE LOCAL end testsuite nested functions */
/* APPLE LOCAL begin mainline */
extern void abort (void);
extern void exit (int);
/* APPLE LOCAL end mainline */
#ifndef NO_LABEL_VALUES
f ()
{
__label__ l;
void *x()
{
return &&l;
}
goto *x ();
abort ();
return;
l:
exit (0);
}
#else
int x;
#endif