rust/tests/panic/div-by-zero-2.rs
2022-08-06 15:30:00 -04:00

6 lines
66 B
Rust

#![allow(unconditional_panic)]
fn main() {
let _n = 1 / 0;
}