mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +00:00
10 lines
146 B
Rust
10 lines
146 B
Rust
fn main() {
|
|
'a: loop {
|
|
|| {
|
|
loop { continue 'a }
|
|
//~^ ERROR use of unreachable label `'a`
|
|
};
|
|
|
|
}
|
|
}
|