Sign in
fuchsia
/
fuchsia
/
refs/heads/releases/dogfood
/
.
/
third_party
/
rust_crates
/
vendor
/
rayon-core
/
tests
/
init_zero_threads.rs
blob: ebd73c585ddce69a4a1b170dfdef8bbc2aa555b4 [
file
] [
log
] [
blame
] [
edit
]
use
rayon_core
::
ThreadPoolBuilder
;
#[
test
]
fn
init_zero_threads
()
{
ThreadPoolBuilder
::
new
()
.
num_threads
(
0
)
.
build_global
()
.
unwrap
();
}