mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
25 lines
422 B
Rust
25 lines
422 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);
|
|
}
|