about summary refs log tree commit diff
path: root/tests/mir-opt/no_drop_for_inactive_variant.rs
blob: c94b36971ca2e1991ca0be65e35ba1e68b266c30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// skip-filecheck
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY

// Ensure that there are no drop terminators in `unwrap<T>` (except the one along the cleanup
// path).

// EMIT_MIR no_drop_for_inactive_variant.unwrap.SimplifyCfg-pre-optimizations.after.mir
fn unwrap<T>(opt: Option<T>) -> T {
    match opt {
        Some(x) => x,
        None => panic!(),
    }
}

fn main() {
    let _ = unwrap(Some(1i32));
}