rust/tests/mir-opt/copy-prop/move_arg.rs
Camille GILLOT 38b55dc684 Add tests.
2023-01-27 18:22:45 +00:00

16 lines
256 B
Rust

// Test that we do not move multiple times from the same local.
// unit-test: CopyProp
// EMIT_MIR move_arg.f.CopyProp.diff
pub fn f<T: Copy>(a: T) {
let b = a;
g(a, b);
}
#[inline(never)]
pub fn g<T: Copy>(_: T, _: T) {}
fn main() {
f(5)
}