rust/tests/compile-fail/unchecked_sub1.rs
2020-03-19 08:26:08 +01:00

6 lines
166 B
Rust

#![feature(core_intrinsics)]
fn main() {
// MIN overflow
unsafe { std::intrinsics::unchecked_sub(14u32, 22); } //~ ERROR overflow executing `unchecked_sub`
}