blob: ab240cef34596a04faf054e56abd4ccdda76df9b [file] [log] [blame]
static int a[199];
static void
foo ()
{
int i;
for (i = 198; i >= 0; i--)
a[i] = i;
}
int
main ()
{
int i;
foo ();
for (i = 0; i < 199; i++)
if (a[i] != i)
abort ();
return 0;
}