rust/tests/ui/crashes/ice-3717.stderr

23 lines
744 B
Text
Raw Normal View History

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