blob: ebd73c585ddce69a4a1b170dfdef8bbc2aa555b4 [file] [log] [blame]
use rayon_core::ThreadPoolBuilder;
#[test]
fn init_zero_threads() {
ThreadPoolBuilder::new()
.num_threads(0)
.build_global()
.unwrap();
}