mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
18 lines
311 B
Rust
18 lines
311 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// 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)
|
|
}
|