Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panics
/
unique-panic.rs
blob: 63ff38b6d1287ab6a711878011f04e33d8098ec8 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
!());
}