summaryrefslogtreecommitdiffstats
path: root/vendor/rustc-rayon-core/tests/init_zero_threads.rs
blob: ebd73c585ddce69a4a1b170dfdef8bbc2aa555b4 (plain)
1
2
3
4
5
6
7
8
9
use rayon_core::ThreadPoolBuilder;

#[test]
fn init_zero_threads() {
    ThreadPoolBuilder::new()
        .num_threads(0)
        .build_global()
        .unwrap();
}