package main
func main() {
var y int
next:
for {
y++
if y < 5 {
continue next
}
}
}
#include "main.h"
// -- Implementation --
int main(void) {
so_int y = 0;
next:;
for (;;) {
y++;
if (y < 5) {
continue next;
}
}
next_end:;
return 0;
}
/var/folders/lb/nhsppbxs5_v27pn_x3kf66wc0000gn/T/solod_build2914996221/main.c:11:21: error: expected ';' after continue statement
11 | continue next;
| ^
| ;
1 error generated.
so run: C compiler: exit status 1