mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 06:28:20 +03:00
6 lines
171 B
Rust
6 lines
171 B
Rust
#![feature(core_intrinsics)]
|
|
fn main() {
|
|
// MIN overflow
|
|
unsafe { std::intrinsics::unchecked_sub(14u32, 22); } //~ ERROR Overflowing arithmetic in unchecked_sub
|
|
}
|