9 lines
102 B
Rust
9 lines
102 B
Rust
fn foo() {
|
|
loop {
|
|
break;
|
|
break 'l;
|
|
break 92;
|
|
break 'l 92;
|
|
}
|
|
}
|