mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
16 lines
256 B
Rust
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)
|
|
}
|