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