summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/inherit_overflow.rs
blob: 4e905d00d4d92339a53affb0728c2a153d414a2a (plain)
1
2
3
4
5
6
7
8
9
10
// ignore-wasm32 compiled with panic=abort by default
// unit-test: ConstProp
// compile-flags: -Zmir-enable-passes=+Inline

// EMIT_MIR inherit_overflow.main.ConstProp.diff
fn main() {
    // After inlining, this will contain a `CheckedBinaryOp`.
    // Propagating the overflow is ok as codegen will just skip emitting the panic.
    let _ = <u8 as std::ops::Add>::add(255, 1);
}