blob: 0d96bc2f5e73736bf5d6f3fad6888eb7ab6ec422 [file] [log] [blame]
//@compile-flags: -Zmiri-num-cpus=1024
use std::num::NonZero;
use std::thread::available_parallelism;
fn main() {
assert_eq!(available_parallelism().unwrap(), NonZero::new(1024).unwrap());
}