mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
19 lines
292 B
Rust
19 lines
292 B
Rust
// ignore-wasm32 compiled with panic=abort by default
|
|
// 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);
|
|
}
|