http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60193
--- Comment #3 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
Sorry, minor pilot error, try with:
void foo (int i)
{
void nested (void)
{
char arr[(1U << 31) + 4];
arr[i] = 0;
}
nested ();
}
