]> git.lizzy.rs Git - rust.git/blob - tests/run-pass/panic/div-by-zero-2.rs
with this, we support panics on Windows
[rust.git] / tests / run-pass / panic / div-by-zero-2.rs
1 #![allow(unconditional_panic)]
2
3 fn main() {
4     let _n = 1 / 0;
5 }