summary refs log tree commit diff
path: root/src/test/run-fail/hashmap-capacity-overflow.rs
blob: 038f2756ff32293e1f607ed4f14c978fdbb35a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
// error-pattern:capacity overflow

use std::collections::hash_map::HashMap;
use std::usize;
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);
}