2023-01-15 09:30:09 -06:00
|
|
|
- // MIR for `bar` before CopyProp
|
|
|
|
+ // MIR for `bar` after CopyProp
|
|
|
|
|
|
|
|
fn bar(_1: u8) -> () {
|
2023-06-06 08:47:00 -05:00
|
|
|
debug x => _1;
|
|
|
|
let mut _0: ();
|
|
|
|
let _2: u8;
|
|
|
|
let mut _3: u8;
|
2023-01-15 09:30:09 -06:00
|
|
|
|
|
|
|
bb0: {
|
2023-06-06 08:47:00 -05:00
|
|
|
StorageLive(_2);
|
|
|
|
StorageLive(_3);
|
|
|
|
_3 = copy _1;
|
2023-06-23 11:53:09 -05:00
|
|
|
_2 = dummy(move _3) -> [return: bb1, unwind continue];
|
2023-01-15 09:30:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bb1: {
|
2023-06-06 08:47:00 -05:00
|
|
|
StorageDead(_3);
|
|
|
|
StorageDead(_2);
|
|
|
|
_1 = const 5_u8;
|
|
|
|
_0 = const ();
|
|
|
|
return;
|
2023-01-15 09:30:09 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|