Source code
Revision control
Copy as Markdown
Other Tools
j = 0;
out1:
for (i = 0; ; j++)
if (j == 50)
break out1;
while (++i < 100) {}
assertEq(j, 50);
assertEq(i, 100);
j = 0;
out1:
for (i = 0; ; j++)
if (j == 50)
break out1;
while (++i < 100) {}
assertEq(j, 50);
assertEq(i, 100);