rust/tests/ui/rfc-2497-if-let-chains/ast-lowering-does-not-wrap-let-chains.rs
2023-01-11 09:32:08 +00:00

17 lines
313 B
Rust

// run-pass
#![feature(let_chains)]
#![allow(irrefutable_let_patterns)]
fn main() {
let first = Some(1);
let second = Some(2);
let mut n = 0;
if let x = first && let y = second && 1 == 1 {
assert_eq!(x, first);
assert_eq!(y, second);
n = 1;
}
assert_eq!(n, 1);
}