blob: cb84dc94569c71dc4cfd3e0063663c215ce9bcad [file] [log] [blame]
/* It is unlikely that LLVM will ever support nested functions, but if it does,
here is a testcase. */
main()
{
__label__ l;
void*x()
{
goto l;
}
x();
abort();
return;
l:
exit(0);
}