mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
14 lines
204 B
Rust
14 lines
204 B
Rust
fn f() {
|
|
'l: loop {
|
|
fn g() {
|
|
loop {
|
|
break 'l; //~ ERROR use of unreachable label
|
|
}
|
|
}
|
|
}
|
|
|
|
loop { 'w: while break 'w { } }
|
|
}
|
|
|
|
fn main() {}
|