mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
6 lines
138 B
Rust
6 lines
138 B
Rust
#![feature(core_intrinsics)]
|
|
fn main() {
|
|
// divison by 0
|
|
unsafe { std::intrinsics::exact_div(2, 0); } //~ ERROR divisor of zero
|
|
}
|