]> git.lizzy.rs Git - rust.git/blob - tests/compile-fail/unchecked_sub2.rs
5609ea7a3eddcce6c3a2e23ccc3b7b1831d6aa9c
[rust.git] / tests / compile-fail / unchecked_sub2.rs
1 #![feature(core_intrinsics)]
2 fn main() {
3     // MAX overflow
4     unsafe { std::intrinsics::unchecked_sub(30000i16, -7000); } //~ ERROR overflow executing `unchecked_sub`
5 }