2019-02-16 15:41:06 -06:00
|
|
|
error: parameter of type `HashSet` should be generalized over different hashers
|
2020-04-02 21:09:30 -05:00
|
|
|
--> $DIR/ice-3717.rs:7:21
|
2019-02-16 15:41:06 -06:00
|
|
|
|
|
|
|
|
LL | pub fn ice_3717(_: &HashSet<usize>) {
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-04-02 21:09:30 -05:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/ice-3717.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(clippy::implicit_hasher)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2019-02-16 15:41:06 -06:00
|
|
|
help: consider adding a type parameter
|
|
|
|
|
|
|
|
|
LL | pub fn ice_3717<S: ::std::hash::BuildHasher + Default>(_: &HashSet<usize, S>) {
|
2021-08-11 09:21:33 -05:00
|
|
|
| +++++++++++++++++++++++++++++++++++++++ ~~~~~~~~~~~~~~~~~
|
2019-02-16 15:41:06 -06:00
|
|
|
help: ...and use generic constructor
|
|
|
|
|
|
|
|
|
LL | let _: HashSet<usize> = HashSet::default();
|
2021-08-11 09:21:33 -05:00
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
2019-02-16 15:41:06 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|