mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
6 lines
190 B
Rust
6 lines
190 B
Rust
#![feature(core_intrinsics)]
|
|
fn main() {
|
|
// signed divison with a remainder
|
|
unsafe { std::intrinsics::exact_div(-19i8, 2); } //~ ERROR -19 cannot be divided by 2 without remainder
|
|
}
|