mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
8 lines
102 B
Rust
8 lines
102 B
Rust
fn foo() {
|
|
loop {
|
|
break;
|
|
break 'l;
|
|
break 92;
|
|
break 'l 92;
|
|
}
|
|
}
|