rust/tests/run-pass/panic/div-by-zero-2.rs
2019-12-02 16:04:31 +01:00

7 lines
127 B
Rust

// ignore-windows: Unwind panicking does not currently work on Windows
#![allow(const_err)]
fn main() {
let _n = 1 / 0;
}