mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
275 B
Rust
12 lines
275 B
Rust
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
//@ unit-test: GVN
|
|
//@ compile-flags: -C overflow-checks=on
|
|
|
|
// EMIT_MIR indirect.main.GVN.diff
|
|
fn main() {
|
|
// CHECK-LABEL: fn main(
|
|
// CHECK: debug x => [[x:_.*]];
|
|
// CHECK: [[x]] = const 3_u8;
|
|
let x = (2u32 as u8) + 1;
|
|
}
|