1 use rayon_core::ThreadPoolBuilder; 2 3 #[test] init_zero_threads()4fn init_zero_threads() { 5 ThreadPoolBuilder::new() 6 .num_threads(0) 7 .build_global() 8 .unwrap(); 9 } 10
1 use rayon_core::ThreadPoolBuilder; 2 3 #[test] init_zero_threads()4fn init_zero_threads() { 5 ThreadPoolBuilder::new() 6 .num_threads(0) 7 .build_global() 8 .unwrap(); 9 } 10