2023-04-05 03:44:20 -05:00
|
|
|
// ignore-wasm32 compiled with panic=abort by default
|
2023-02-08 14:28:39 -06:00
|
|
|
// unit-test: DataflowConstProp
|
|
|
|
// compile-flags: -Zmir-enable-passes=+Inline
|
2022-10-15 12:24:02 -05:00
|
|
|
|
2022-10-24 19:27:27 -05:00
|
|
|
// EMIT_MIR inherit_overflow.main.DataflowConstProp.diff
|
2022-10-15 12:24:02 -05:00
|
|
|
fn main() {
|
2023-02-08 14:28:39 -06:00
|
|
|
// After inlining, this will contain a `CheckedBinaryOp`.
|
|
|
|
// Propagating the overflow is ok as codegen will just skip emitting the panic.
|
2022-10-15 12:24:02 -05:00
|
|
|
let _ = <u8 as std::ops::Add>::add(255, 1);
|
|
|
|
}
|