rust/tests/mir-opt/const_prop/bad_op_mod_by_zero.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
208 B
Rust
Raw Normal View History

2023-05-01 06:18:41 -05:00
// unit-test: ConstProp
2023-04-05 03:44:20 -05:00
// ignore-wasm32 compiled with panic=abort by default
2020-07-27 14:22:43 -05:00
// EMIT_MIR bad_op_mod_by_zero.main.ConstProp.diff
#[allow(unconditional_panic)]
fn main() {
let y = 0;
let _z = 1 % y;
}