mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
8 lines
102 B
Rust
8 lines
102 B
Rust
fn foo() {
|
|
loop {
|
|
break;
|
|
break 'l;
|
|
break 92;
|
|
break 'l 92;
|
|
}
|
|
}
|