Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panic-runtime
/
unwind-unique.rs
blob: a6cd59690ca92e597dcd41c882fcaab67ac2316c [
file
] [
log
] [
blame
] [
edit
]
//@ run-fail
//@ error-pattern:explicit panic
//@ ignore-emscripten no processes
fn
failfn
()
{
panic
!();
}
fn
main
()
{
Box
::
new
(
0
);
failfn
();
}