mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
12 lines
155 B
Rust
12 lines
155 B
Rust
//@ check-pass
|
|
|
|
#![feature(let_chains)]
|
|
|
|
fn main() {
|
|
let opt = Some("foo bar");
|
|
|
|
if true && let Some(x) = opt {
|
|
println!("{}", x);
|
|
}
|
|
}
|