9 lines
102 B
Rust
Raw Normal View History

2018-08-24 11:21:13 +03:00
fn foo() {
loop {
break;
break 'l;
break 92;
break 'l 92;
}
}