8 lines
95 B
C
8 lines
95 B
C
void main(){
|
|
int i = 0;
|
|
L0:
|
|
if(i >= 10) goto LF;
|
|
i++; goto L0;
|
|
LF:
|
|
assert(i >= 10);
|
|
}
|