summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/copy-prop/cycle.rs
blob: 58e049fde4b5848b33b3ff57e01c6e235ae3db3b (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
//! Tests that cyclic assignments don't hang CopyProp, and result in reasonable code.
// unit-test: CopyProp
fn val() -> i32 {
    1
}

// EMIT_MIR cycle.main.CopyProp.diff
fn main() {
    let mut x = val();
    let y = x;
    let z = y;
    x = z;

    drop(x);
}