mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
264 B
Rust
20 lines
264 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// unit-test: CopyProp
|
|
|
|
fn id<T>(x: T) -> T {
|
|
x
|
|
}
|
|
|
|
// EMIT_MIR dead_stores_79191.f.CopyProp.after.mir
|
|
fn f(mut a: usize) -> usize {
|
|
let b = a;
|
|
a = 5;
|
|
a = b;
|
|
id(a)
|
|
}
|
|
|
|
fn main() {
|
|
f(0);
|
|
}
|