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

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

12 lines
219 B
Rust
Raw Normal View History

2022-12-04 02:20:37 -06:00
// MIR for `tuples` after built
fn tuples(_1: (u32, i32)) -> (u32, i32) {
2023-06-06 08:47:00 -05:00
let mut _0: (u32, i32);
2022-12-04 02:20:37 -06:00
bb0: {
2023-06-06 08:47:00 -05:00
(_0.0: u32) = copy (_1.0: u32);
(_0.1: i32) = copy (_1.1: i32);
return;
2022-12-04 02:20:37 -06:00
}
}