rust/tests/mir-opt/const_prop/checked_add.rs
2023-01-11 09:32:08 +00:00

8 lines
147 B
Rust

// unit-test: ConstProp
// compile-flags: -C overflow-checks=on
// EMIT_MIR checked_add.main.ConstProp.diff
fn main() {
let x: u32 = 1 + 1;
}