summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/const_prop/cast.rs
blob: 680cab007408295d39f13ce5886e8e8987aa3b06 (plain)
1
2
3
4
5
6
7
// EMIT_MIR cast.main.ConstProp.diff

fn main() {
    let x = 42u8 as u32;

    let y = 42u32 as u8;
}