mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-08-30 15:17:31 +00:00
8 lines
102 B
Rust
8 lines
102 B
Rust
fn foo() {
|
|
loop {
|
|
break;
|
|
break 'l;
|
|
break 92;
|
|
break 'l 92;
|
|
}
|
|
}
|