about summary refs log tree commit diff
path: root/tests/mir-opt/const_prop/cast.rs
blob: dce2e38fa91730ea4a34c89894b139b29298c8ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ test-mir-pass: GVN
// EMIT_MIR cast.main.GVN.diff

fn main() {
    // CHECK-LABEL: fn main(
    // CHECK: debug x => [[x:_.*]];
    // CHECK: debug y => [[y:_.*]];
    // CHECK: [[x]] = const 42_u32;
    // CHECK: [[y]] = const 42_u8;
    let x = 42u8 as u32;
    let y = 42u32 as u8;
}