rust/tests/mir-opt/copy-prop/cycle.rs
2023-04-06 10:08:07 +01:00

17 lines
319 B
Rust

// ignore-wasm32 compiled with panic=abort by default
//! 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);
}