summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/mutable_variable_unprop_assign.rs
blob: 4e7c0597a29f3b9956608e5dbc925c660c2cdd71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
// unit-test: ConstProp

// EMIT_MIR mutable_variable_unprop_assign.main.ConstProp.diff
fn main() {
    let a = foo();
    let mut x: (i32, i32) = (1, 2);
    x.1 = a;
    let y = x.1;
    let z = x.0; // this could theoretically be allowed, but we can't handle it right now
}

#[inline(never)]
fn foo() -> i32 {
    unimplemented!()
}