rust/tests/mir-opt/copy-prop/cycle.rs
Camille GILLOT 38b55dc684 Add tests.
2023-01-27 18:22:45 +00:00

16 lines
265 B
Rust

//! 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);
}