blob: 16373af1a890cc826977b4fd0a01e0c0ef02dd11 [file] [log] [blame]
// XFAIL: *
/* 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);
}