]> git.lizzy.rs Git - rust.git/blob - tests/compile-fail/panic/windows3.rs
a2e7bf5a7d438ab69b86c0cdb85101fec7bdb795
[rust.git] / tests / compile-fail / panic / windows3.rs
1 // ignore-linux
2 // ignore-macos
3
4 // Test that panics on Windows give a reasonable error message.
5
6 // error-pattern: panicking is not supported on this target
7 #[allow(unconditional_panic)]
8 fn main() {
9     let _val = 1/0;
10 }