summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/dest-prop/union.rs
blob: 062d02d067311f1ea7b0b83d76ebec784c1963ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ignore-wasm32 compiled with panic=abort by default
//! Tests that we can propagate into places that are projections into unions
// compile-flags: -Zunsound-mir-opts
fn val() -> u32 {
    1
}

// EMIT_MIR union.main.DestinationPropagation.diff
fn main() {
    union Un {
        us: u32,
    }

    let un = Un { us: val() };

    drop(unsafe { un.us });
}