9 lines
190 B
Rust
9 lines
190 B
Rust
// unit-test: ConstProp
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// EMIT_MIR bad_op_mod_by_zero.main.ConstProp.diff
|
|
#[allow(unconditional_panic)]
|
|
fn main() {
|
|
let y = 0;
|
|
let _z = 1 % y;
|
|
}
|