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

18 lines
210 B
Rust

// 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);
}