blob: ce55c56636634c064cbeaf11338a6e4975676e93 [file] [log] [blame]
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
f ()
{
long long i;
int j;
long long k = i = j;
int inner () {return j + i;}
return k;
}