userpmalloc::*;#[global_allocator]staticALLOC: RpMalloc = RpMalloc;#[test]fntest(){// do some string allocations
let s1 ="hej".to_string();let s2 =format!("test: {}", s1);// do a big vector allocation
letmut v =Vec::<String>::with_capacity(100_000);
v.push(s2);}