rust/tests/mir-opt/copy-prop/cycle.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
324 B
Rust
Raw Normal View History

// skip-filecheck
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-01-15 09:30:09 -06:00
//! Tests that cyclic assignments don't hang CopyProp, and result in reasonable code.
//@ test-mir-pass: CopyProp
2023-01-15 09:30:09 -06:00
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);
}