use stdrandom::random_u64;
#[test]
#[ignore]
fn main() {
let mut hist_upper = [0; 16];
let mut hist_lower = [0; 16];
for _ in 0..300_000 {
let num = random_u64();
hist_upper[(num >> 60) as usize] += 1; hist_lower[(num & 0xF) as usize] += 1; }
println!("Upper bits distribution: {:?}", hist_upper);
println!("Lower bits distribution: {:?}", hist_lower);
panic!();
}