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