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.

9 lines
201 B
Rust
Raw Normal View History

2023-04-05 03:44:20 -05:00
// ignore-wasm32 compiled with panic=abort by default
2022-07-26 12:04:27 -05:00
// unit-test: ConstProp
// compile-flags: -C overflow-checks=on
2020-07-27 14:22:43 -05:00
// EMIT_MIR checked_add.main.ConstProp.diff
fn main() {
let x: u32 = 1 + 1;
}