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

6 lines
172 B
Rust

#![feature(core_intrinsics)]
fn main() {
// MAX overflow
unsafe { std::intrinsics::unchecked_sub(30000i16, -7000); } //~ ERROR overflow executing `unchecked_sub`
}