mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
25 lines
421 B
Rust
25 lines
421 B
Rust
// run-pass
|
|
#![allow(unreachable_code)]
|
|
pub fn main() {
|
|
let mut x = 0;
|
|
|
|
'foo: loop {
|
|
'bar: loop {
|
|
loop {
|
|
if 1 == 2 {
|
|
break 'foo;
|
|
}
|
|
else {
|
|
break 'bar;
|
|
}
|
|
}
|
|
continue 'foo;
|
|
}
|
|
x = 42;
|
|
break;
|
|
}
|
|
|
|
println!("{}", x);
|
|
assert_eq!(x, 42);
|
|
}
|