mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 13:49:13 +00:00
12 lines
170 B
Rust
12 lines
170 B
Rust
//@ check-pass
|
|
|
|
#![feature(let_chains)]
|
|
|
|
fn main() {
|
|
let x = Some(vec!["test"]);
|
|
|
|
if let Some(v) = x && v.is_empty() {
|
|
println!("x == Some([])");
|
|
}
|
|
}
|