2021-03-14 14:11:37 -05:00
|
|
|
// revisions: mir thir
|
|
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
|
2019-06-03 14:30:25 -05:00
|
|
|
#![feature(core_intrinsics)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let (x, y) = (1u32, 2u32);
|
|
|
|
let add = std::intrinsics::unchecked_add(x, y); //~ ERROR call to unsafe function
|
|
|
|
let sub = std::intrinsics::unchecked_sub(x, y); //~ ERROR call to unsafe function
|
|
|
|
let mul = std::intrinsics::unchecked_mul(x, y); //~ ERROR call to unsafe function
|
|
|
|
}
|