18 lines
361 B
Rust
18 lines
361 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
//! Tests that cyclic assignments don't hang DestinationPropagation, and result in reasonable code.
|
|
// unit-test: DestinationPropagation
|
|
fn val() -> i32 {
|
|
1
|
|
}
|
|
|
|
// EMIT_MIR cycle.main.DestinationPropagation.diff
|
|
fn main() {
|
|
let mut x = val();
|
|
let y = x;
|
|
let z = y;
|
|
x = z;
|
|
|
|
drop(x);
|
|
}
|