mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 06:28:20 +03:00
7 lines
127 B
Rust
7 lines
127 B
Rust
// ignore-windows: Unwind panicking does not currently work on Windows
|
|
#![allow(const_err)]
|
|
|
|
fn main() {
|
|
let _n = 1 / 0;
|
|
}
|