summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/issue-72181-1.rs
blob: 91e98adbe8049c3da9004d55a37b7c655bd78949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// compile-flags: -Z mir-opt-level=1
// Regression test for #72181, this ICE requires `-Z mir-opt-level=1` flags.

#![feature(never_type)]
#![allow(unused, invalid_value)]

enum Void {}

// EMIT_MIR issue_72181_1.f.mir_map.0.mir
fn f(v: Void) -> ! {
    match v {}
}

// EMIT_MIR issue_72181_1.main.mir_map.0.mir
fn main() {
    let v: Void = unsafe {
        std::mem::transmute::<(), Void>(())
    };

    f(v);
}