mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
28 lines
479 B
Rust
28 lines
479 B
Rust
|
#![warn(clippy::unit_hash)]
|
||
|
|
||
|
use std::collections::hash_map::DefaultHasher;
|
||
|
use std::hash::Hash;
|
||
|
|
||
|
enum Foo {
|
||
|
Empty,
|
||
|
WithValue(u8),
|
||
|
}
|
||
|
|
||
|
fn do_nothing() {}
|
||
|
|
||
|
fn main() {
|
||
|
let mut state = DefaultHasher::new();
|
||
|
let my_enum = Foo::Empty;
|
||
|
|
||
|
match my_enum {
|
||
|
Foo::Empty => ().hash(&mut state),
|
||
|
Foo::WithValue(x) => x.hash(&mut state),
|
||
|
}
|
||
|
|
||
|
let res = ();
|
||
|
res.hash(&mut state);
|
||
|
|
||
|
#[allow(clippy::unit_arg)]
|
||
|
do_nothing().hash(&mut state);
|
||
|
}
|