mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 00:17:13 +00:00
38 lines
503 B
Rust
38 lines
503 B
Rust
|
use std::hash::{Hash, Hasher};
|
||
|
|
||
|
#[derive(PartialEq, Hash)]
|
||
|
struct Foo;
|
||
|
|
||
|
impl PartialEq<u64> for Foo {
|
||
|
fn eq(&self, _: &u64) -> bool {
|
||
|
true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(Hash)]
|
||
|
struct Bar;
|
||
|
|
||
|
impl PartialEq for Bar {
|
||
|
fn eq(&self, _: &Bar) -> bool {
|
||
|
true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(Hash)]
|
||
|
struct Baz;
|
||
|
|
||
|
impl PartialEq<Baz> for Baz {
|
||
|
fn eq(&self, _: &Baz) -> bool {
|
||
|
true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(PartialEq)]
|
||
|
struct Bah;
|
||
|
|
||
|
impl Hash for Bah {
|
||
|
fn hash<H: Hasher>(&self, _: &mut H) {}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|