blob: e173c9798f420cc112c42ca1f168c1b6ddb81585 [file] [log] [blame]
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
extern int __dummy (void *__preg, const char *__string);
extern int rpmatch (const char *response);
int
rpmatch (const char *response)
{
auto inline int try (void *re);
inline int try (void *re)
{
return __dummy (re, response);
}
static void *yesre;
return (try (&yesre));
}