blob: 3aea19d80dc7a82f00ebac826eb4a979a29b14d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// ignore-wasm32 compiled with panic=abort by default
//! 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);
}
|