rust/tests/ui/rfcs/rfc-2497-if-let-chains/issue-92145.rs

10 lines
147 B
Rust

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