AStat/examples/interval_loop/interval_goto_loop.c

9 lines
95 B
C
Raw Normal View History

2024-06-04 17:55:32 +02:00
void main(){
int i = 0;
L0:
if(i >= 10) goto LF;
i++; goto L0;
LF:
assert(i >= 10);
}