// aux-build:implicit_hasher_macros.rs #![deny(clippy::implicit_hasher)] #![allow(unused)] #[macro_use] extern crate implicit_hasher_macros; use std::cmp::Eq; use std::collections::{HashMap, HashSet}; use std::hash::{BuildHasher, Hash}; pub trait Foo: Sized { fn make() -> (Self, Self); } impl Foo for HashMap { fn make() -> (Self, Self) { // OK, don't suggest to modify these let _: HashMap = HashMap::new(); let _: HashSet = HashSet::new(); (HashMap::new(), HashMap::with_capacity(10)) } } impl Foo for (HashMap,) { fn make() -> (Self, Self) { ((HashMap::new(),), (HashMap::with_capacity(10),)) } } impl Foo for HashMap { fn make() -> (Self, Self) { (HashMap::new(), HashMap::with_capacity(10)) } } impl Foo for HashMap { fn make() -> (Self, Self) { (HashMap::default(), HashMap::with_capacity_and_hasher(10, S::default())) } } impl Foo for HashMap { fn make() -> (Self, Self) { (HashMap::default(), HashMap::with_capacity_and_hasher(10, S::default())) } } impl Foo for HashSet { fn make() -> (Self, Self) { (HashSet::new(), HashSet::with_capacity(10)) } } impl Foo for HashSet { fn make() -> (Self, Self) { (HashSet::new(), HashSet::with_capacity(10)) } } impl Foo for HashSet { fn make() -> (Self, Self) { (HashSet::default(), HashSet::with_capacity_and_hasher(10, S::default())) } } impl Foo for HashSet { fn make() -> (Self, Self) { (HashSet::default(), HashSet::with_capacity_and_hasher(10, S::default())) } } pub fn foo(_map: &mut HashMap, _set: &mut HashSet) {} macro_rules! gen { (impl) => { impl Foo for HashMap { fn make() -> (Self, Self) { (HashMap::new(), HashMap::with_capacity(10)) } } }; (fn $name:ident) => { pub fn $name(_map: &mut HashMap, _set: &mut HashSet) {} }; } #[rustfmt::skip] gen!(impl); gen!(fn bar); // When the macro is in a different file, the suggestion spans can't be combined properly // and should not cause an ICE // See #2707 #[macro_use] #[path = "auxiliary/test_macro.rs"] pub mod test_macro; __implicit_hasher_test_macro!(impl for HashMap where V: test_macro::A); // #4260 implicit_hasher_fn!(); // #7712 pub async fn election_vote(_data: HashMap) {} fn main() {}