blob: 7ebb27fdb780f8e0c8a2ff9f4e52ccc7d50d8510 [file] [log] [blame]
struct F { int x; int y; };
int main()
{
int timeout = 0;
int x = 0;
while (1)
{
const struct F i = { x++, };
if (i.x > 0)
break;
if (++timeout > 5)
goto die;
}
return 0;
die:
abort ();
}