rust/tests/mir-opt/building/custom/projections.copy_for_deref.built.after.mir

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

13 lines
222 B
Rust
Raw Normal View History

2023-05-15 05:05:10 -05:00
// MIR for `copy_for_deref` after built
fn copy_for_deref(_1: (&i32, i32)) -> i32 {
2023-06-06 08:47:00 -05:00
let mut _0: i32;
let mut _2: &i32;
2023-05-15 05:05:10 -05:00
bb0: {
2023-06-06 08:47:00 -05:00
_2 = deref_copy (_1.0: &i32);
_0 = (*_2);
return;
2023-05-15 05:05:10 -05:00
}
}