]> git.proxmox.com Git - rustc.git/blob - tests/mir-opt/dataflow-const-prop/cast.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / mir-opt / dataflow-const-prop / cast.rs
1 // unit-test: DataflowConstProp
2
3 // EMIT_MIR cast.main.DataflowConstProp.diff
4 fn main() {
5 let a = 257;
6 let b = a as u8 + 1;
7 }