rust/tests/compile-fail/div-by-zero-2.rs
2019-02-26 18:37:45 +00:00

6 lines
92 B
Rust

#![allow(const_err)]
fn main() {
let _n = 1 / 0; //~ ERROR attempt to divide by zero
}