blob: 91aebc3bbba8bf9c11e58bbf94f3a6bfd26f3fd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//@ run-fail
//@ error-pattern:capacity overflow
//@ ignore-emscripten no processes
use std::collections::hash_map::HashMap;
use std::mem::size_of;
fn main() {
let threshold = usize::MAX / size_of::<(u64, u64, u64)>();
let mut h = HashMap::<u64, u64>::with_capacity(threshold + 100);
h.insert(0, 0);
}
|