summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2497-if-let-chains/issue-92145.rs
blob: 7c7e31f4db4007e5a8f7d443239f86af4c77f942 (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass

#![feature(let_chains)]

fn main() {
    let opt = Some("foo bar");

    if true && let Some(x) = opt {
        println!("{}", x);
    }
}