rust/src/test/ui/issues/issue-35677.rs

6 lines
162 B
Rust
Raw Normal View History

2018-12-12 17:58:27 -06:00
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
}