1
Fork 0
rust/tests/ui/panics/unique-panic.rs

11 lines
243 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern: panic
// for some reason, fails to match error string on
// wasm32-unknown-unknown with stripped debuginfo and symbols,
// so don't strip it
//@ compile-flags:-Cstrip=none
2016-05-27 08:09:36 +05:30
fn main() {
Box::new(panic!());
}