summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/building/issue_101867.rs
blob: f8a531e8982d5db1b7a533a6345ef09a222d1f67 (plain)
1
2
3
4
5
6
7
8
// skip-filecheck
// EMIT_MIR issue_101867.main.built.after.mir
fn main() {
    let x: Option<u8> = Some(1);
    let Some(y) = x else {
        panic!();
    };
}