11 lines
147 B
Rust

//@ check-pass
//@ edition:2024
fn main() {
let opt = Some("foo bar");
if true && let Some(x) = opt {
println!("{}", x);
}
}