rust/tests/compile-fail/intrinsics/div-by-zero-2.rs
2020-04-11 11:36:55 +02:00

10 lines
188 B
Rust

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