mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
36 lines
652 B
Rust
36 lines
652 B
Rust
// run-pass
|
|
|
|
|
|
|
|
fn main() {
|
|
#[allow(dead_code)]
|
|
enum MyEnum {
|
|
A(String),
|
|
B { f: String },
|
|
C,
|
|
}
|
|
// ref binding to non-copy value and or-pattern
|
|
let (MyEnum::A(ref x) | MyEnum::B { f: ref x }) = (MyEnum::B { f: String::new() }) else {
|
|
panic!();
|
|
};
|
|
assert_eq!(x, "");
|
|
|
|
// nested let-else
|
|
let mut x = 1;
|
|
loop {
|
|
let 4 = x else {
|
|
let 3 = x else {
|
|
x += 1;
|
|
continue;
|
|
};
|
|
break;
|
|
};
|
|
panic!();
|
|
}
|
|
assert_eq!(x, 3);
|
|
|
|
// else return
|
|
let Some(1) = Some(2) else { return };
|
|
panic!();
|
|
}
|