2022-12-04 12:26:09 -06:00
|
|
|
- // MIR for `multiple_storage` before ReferencePropagation
|
|
|
|
+ // MIR for `multiple_storage` after ReferencePropagation
|
|
|
|
|
|
|
|
fn multiple_storage() -> () {
|
2023-06-06 08:47:00 -05:00
|
|
|
let mut _0: ();
|
|
|
|
let mut _1: i32;
|
|
|
|
let mut _2: &i32;
|
|
|
|
let mut _3: i32;
|
2022-12-04 12:26:09 -06:00
|
|
|
|
|
|
|
bb0: {
|
2023-06-06 08:47:00 -05:00
|
|
|
StorageLive(_1);
|
|
|
|
_1 = const 5_i32;
|
|
|
|
_2 = &_1;
|
|
|
|
StorageDead(_1);
|
|
|
|
StorageLive(_1);
|
|
|
|
_3 = copy (*_2);
|
2023-06-23 11:53:09 -05:00
|
|
|
_0 = opaque::<i32>(copy _3) -> [return: bb1, unwind continue];
|
2022-12-04 12:26:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bb1: {
|
2023-06-06 08:47:00 -05:00
|
|
|
return;
|
2022-12-04 12:26:09 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|