tcc-65816/test/tests/20040704-1.c
2017-06-09 13:52:12 +02:00

15 lines
188 B
C

/* PR 16348: Make sure that condition-first false loops DTRT. */
extern void abort ();
int main()
{
for (; 0 ;)
{
abort ();
label:
return 0;
}
goto label;
}