Sign in
fuchsia
/
fuchsia
/
refs/heads/releases/dogfood
/
.
/
third_party
/
rust_crates
/
vendor
/
rayon-core
/
tests
/
simple_panic.rs
blob: 2564482a47e5d2587e53dffb3da153aea77094bd [
file
] [
log
] [
blame
] [
edit
]
use
rayon_core
::
join
;
#[
test
]
#[
should_panic
(
expected
=
"should panic"
)]
fn
simple_panic
()
{
join
(||
{},
||
panic
!(
"should panic"
));
}