summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/copy-prop/dead_stores_79191.rs
blob: e3493b8b7a1858b88cb9aaddd8ec863ce4c3d3dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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);
}