rust/tests/compile-fail/unchecked_sub1.rs
2020-02-06 11:20:28 +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`
}