mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 05:17:46 +00:00
11 lines
147 B
Rust
11 lines
147 B
Rust
//@ check-pass
|
|
//@ edition:2024
|
|
|
|
fn main() {
|
|
let opt = Some("foo bar");
|
|
|
|
if true && let Some(x) = opt {
|
|
println!("{}", x);
|
|
}
|
|
}
|