Sign in
fuchsia
/
third_party
/
rust
/
8a0310a0b131cfc24b931cd537b400525727cf6c
/
.
/
tests
/
ui
/
panic-runtime
/
unwind-rec.rs
blob: a855a4de28014debf6a1ba0538a0439d4fcbe665 [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
fn
build
()
->
Vec
<
isize
>
{
panic
!();
}
struct
Blk
{
node
:
Vec
<
isize
>,
}
fn
main
()
{
let
_blk
=
Blk
{
node
:
build
()
};
}