Sign in
◑
Theme
rust
/
rust
/
df734af6ae8a7fdc287c5da23fe610573bf2a761
/
.
/
tests
/
ui
/
panic-runtime
/
unwind-unique.rs
blob: b57d81842c4dd35b6930cdc4129c19cf8dc4d03a [
file
]
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
fn
failfn
()
{
panic
!();
}
fn
main
()
{
Box
::
new
(
0
);
failfn
();
}