about summary refs log tree commit diff
path: root/tests/mir-opt/copy-prop/cycle.rs
blob: 1c0c9eae7fead176fb1f0e28d5b2b72f647a3e9b (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.
//@ test-mir-pass: 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);
}