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

22 lines
637 B
Plaintext
Raw Normal View History

2019-02-16 15:41:06 -06:00
error: parameter of type `HashSet` should be generalized over different hashers
--> tests/ui/crashes/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
--> tests/ui/crashes/ice-3717.rs:1:9
2020-04-02 21:09:30 -05:00
|
LL | #![deny(clippy::implicit_hasher)]
| ^^^^^^^^^^^^^^^^^^^^^^^
help: add a type parameter for `BuildHasher`
2019-02-16 15:41:06 -06:00
|
LL ~ pub fn ice_3717<S: ::std::hash::BuildHasher + Default>(_: &HashSet<usize, S>) {
LL |
LL | let _ = [0u8; 0];
LL ~ let _: HashSet<usize> = HashSet::default();
2019-02-16 15:41:06 -06:00
|
error: aborting due to 1 previous error
2019-02-16 15:41:06 -06:00