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([])");
|
|
}
|
|
}
|