about summary refs log tree commit diff
path: root/tests/ui/panics/unique-panic.rs
blob: 63ff38b6d1287ab6a711878011f04e33d8098ec8 (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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

fn main() {
    Box::new(panic!());
}