Comment #0 by verylonglogin.reg — 2014-07-03T11:20:16Z
This code should compile:
---
int f(int a)
{
L: for(;;)
{
if(a--)
continue L;
return 0;
}
}
---
main.d(1): Error: function main.f no return exp; or assert(0); at end of function
---
Comment #1 by robert.schadek — 2024-12-13T18:21:53Z