6 lines
177 B
Rust
6 lines
177 B
Rust
#![feature(core_intrinsics)]
|
|
fn main() {
|
|
// MAX overflow
|
|
unsafe { std::intrinsics::unchecked_add(40000u16, 30000); } //~ ERROR Overflowing arithmetic in unchecked_add
|
|
}
|