]> git.proxmox.com Git - rustc.git/blame - src/test/mir-opt/const_prop/mutable_variable.rs
Update unsuspicious file list
[rustc.git] / src / test / mir-opt / const_prop / mutable_variable.rs
CommitLineData
f2b60f7d 1// unit-test
f9f354fc
XL
2// compile-flags: -O
3
3dfed10e 4// EMIT_MIR mutable_variable.main.ConstProp.diff
f9f354fc
XL
5fn main() {
6 let mut x = 42;
7 x = 99;
8 let y = x;
9}