rust/tests/mir-opt/const_prop/checked_add.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
318 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2022-07-26 17:04:27 +00:00
// unit-test: ConstProp
// compile-flags: -C overflow-checks=on
2020-07-27 19:22:43 +00:00
// EMIT_MIR checked_add.main.ConstProp.diff
fn main() {
2023-12-02 20:18:55 +00:00
// CHECK-LABEL: fn main(
// CHECK: debug x => [[x:_.*]];
// CHECK: assert(!const false,
// CHECK: [[x]] = const 2_u32;
let x: u32 = 1 + 1;
}