rust/tests/compile-fail/div-by-zero-2.rs

6 lines
92 B
Rust
Raw Normal View History

#![allow(const_err)]
fn main() {
2018-10-19 04:50:17 -05:00
let _n = 1 / 0; //~ ERROR attempt to divide by zero
}