Files
rust/tests/compile-fail/panic/windows1.rs
T
2020-03-21 10:17:57 +01:00

10 lines
217 B
Rust

// ignore-linux
// ignore-macos
// Test that panics on Windows give a reasonable error message.
// error-pattern: panicking is not supported on this platform
fn main() {
core::panic!("this is {}", "Windows");
}