mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 02:33:55 +00:00
13 lines
318 B
Rust
13 lines
318 B
Rust
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// unit-test: ConstProp
|
|
// compile-flags: -C overflow-checks=on
|
|
|
|
// EMIT_MIR checked_add.main.ConstProp.diff
|
|
fn main() {
|
|
// CHECK-LABEL: fn main(
|
|
// CHECK: debug x => [[x:_.*]];
|
|
// CHECK: assert(!const false,
|
|
// CHECK: [[x]] = const 2_u32;
|
|
let x: u32 = 1 + 1;
|
|
}
|