summaryrefslogtreecommitdiffstats
path: root/src/test/ui/let-else/let-else-scope.rs
blob: f17682db4c3bd04529bed5c680b2fc2cd623a574 (plain)
1
2
3
4
5
6
7
#![feature(let_else)]

fn main() {
    let Some(x) = Some(2) else {
        panic!("{}", x); //~ ERROR cannot find value `x` in this scope
    };
}