summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/issue-101867.rs
blob: 8a357eb79951439987a08e1ad0a1dc2f8e4fe50d (plain)
1
2
3
4
5
6
7
// EMIT_MIR issue_101867.main.mir_map.0.mir
fn main() {
    let x: Option<u8> = Some(1);
    let Some(y) = x else {
        panic!();
    };
}