mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
287 B
Rust
13 lines
287 B
Rust
//@ unit-test: 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;
|
|
}
|