t
Size: a a a
t
f
f
f
f
D
O
t
t
c
c
f
t
f
c
f
#[test]
fn map_alloc() {
use alloc_counter::count_alloc;
use std::collections::HashMap;
let allocs = count_alloc(|| {
let _ = HashMap::<String, String, _>::new();
});
println!("{:#?}", allocs)
}
(
(
0,
0,
0,
),
(),
)
f
f