]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2497-if-let-chains/issue-92145.rs
Auto merge of #93718 - thomcc:used-macho, r=pnkfelix
[rust.git] / src / test / ui / rfc-2497-if-let-chains / issue-92145.rs
1 // check-pass
2
3 fn main() {
4     let opt = Some("foo bar");
5
6     if true && let Some(x) = opt {
7         println!("{}", x);
8     }
9 }