rust/tests/fail/intrinsics/unchecked_sub1.rs

6 lines
159 B
Rust
Raw Normal View History

2022-07-24 13:28:45 -05:00
#![feature(unchecked_math)]
fn main() {
// MIN overflow
2022-07-24 13:28:45 -05:00
let _val = unsafe { 14u32.unchecked_sub(22) }; //~ ERROR: overflow executing `unchecked_sub`
}