mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
398 B
Rust
12 lines
398 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// unit-test: DataflowConstProp
|
|
// compile-flags: -Zmir-enable-passes=+Inline
|
|
|
|
// EMIT_MIR inherit_overflow.main.DataflowConstProp.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);
|
|
}
|