rust/tests/compile-fail/intrinsics/rem-by-zero.rs

10 lines
188 B
Rust
Raw Normal View History

2020-02-06 04:20:28 -06:00
#![feature(core_intrinsics)]
use std::intrinsics::*;
fn main() {
unsafe {
let _n = unchecked_rem(3u32, 0); //~ ERROR calculating the remainder with a divisor of zero
}
}