blob: 46d3f7e4af00b0f0b7e2683bdfcd917243a34556 [file] [log] [blame]
use std::collections::HashMap;
fn intersect_map<K, V>(this: &mut HashMap<K, V>, other: HashMap<K, V>) -> bool {
this.drain()
//~^ ERROR no method named
}