]> git.proxmox.com Git - rustc.git/blob - src/test/mir-opt/const_prop/cast.rs
Update unsuspicious file list
[rustc.git] / src / test / mir-opt / const_prop / cast.rs
1 // unit-test: ConstProp
2 // EMIT_MIR cast.main.ConstProp.diff
3
4 fn main() {
5 let x = 42u8 as u32;
6
7 let y = 42u32 as u8;
8 }