rust/tests/mir-opt/dest-prop/dead_stores_79191.rs
2023-01-11 09:32:08 +00:00

18 lines
238 B
Rust

// unit-test: DestinationPropagation
fn id<T>(x: T) -> T {
x
}
// EMIT_MIR dead_stores_79191.f.DestinationPropagation.after.mir
fn f(mut a: usize) -> usize {
let b = a;
a = 5;
a = b;
id(a)
}
fn main() {
f(0);
}