Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
panics
/
unique-panic.rs
blob: ae7911e5943891df6cea34c1e82a8f31c5ddf5d6 [
file
] [
log
] [
blame
]
// 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
!());
}