2021-11-04 12:52:36 +00:00
|
|
|
error: this call to `hash` on the unit type will do nothing
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unit_hash.rs:19:23
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | Foo::Empty => ().hash(&mut state),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: remove the call to `hash` or consider using: `0_u8.hash(&mut state)`
|
|
|
|
|
|
|
|
|
= note: the implementation of `Hash` for `()` is a no-op
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::unit-hash` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unit_hash)]`
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
error: this call to `hash` on the unit type will do nothing
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unit_hash.rs:26:5
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | res.hash(&mut state);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: remove the call to `hash` or consider using: `0_u8.hash(&mut state)`
|
|
|
|
|
|
|
|
|
= note: the implementation of `Hash` for `()` is a no-op
|
|
|
|
|
|
|
|
error: this call to `hash` on the unit type will do nothing
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unit_hash.rs:31:5
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | do_nothing().hash(&mut state);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove the call to `hash` or consider using: `0_u8.hash(&mut state)`
|
|
|
|
|
|
|
|
|
= note: the implementation of `Hash` for `()` is a no-op
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|