rust/tests/mir-opt/dataflow-const-prop/self_assign.rs
2023-10-19 15:51:52 +00:00

14 lines
206 B
Rust

// skip-filecheck
// unit-test: DataflowConstProp
// EMIT_MIR self_assign.main.DataflowConstProp.diff
fn main() {
let mut a = 0;
a = a + 1;
a = a;
let mut b = &a;
b = b;
a = *b;
}