rust/tests/compile-fail/unchecked_sub1.rs

6 lines
166 B
Rust
Raw Normal View History

#![feature(core_intrinsics)]
fn main() {
// MIN overflow
2020-02-06 04:20:28 -06:00
unsafe { std::intrinsics::unchecked_sub(14u32, 22); } //~ ERROR Overflow executing `unchecked_sub`
}