2022-05-06 07:10:11 +00:00
|
|
|
#![allow(clippy::derive_partial_eq_without_eq)]
|
|
|
|
|
2019-10-28 06:34:29 +00:00
|
|
|
#[derive(PartialEq, Hash)]
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl PartialEq<u64> for Foo {
|
|
|
|
fn eq(&self, _: &u64) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Hash)]
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2019-10-28 06:34:29 +00:00
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl PartialEq for Bar {
|
|
|
|
fn eq(&self, _: &Bar) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Hash)]
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: you are deriving `Hash` but have implemented `PartialEq` explicitly
|
2019-10-28 06:34:29 +00:00
|
|
|
struct Baz;
|
|
|
|
|
|
|
|
impl PartialEq<Baz> for Baz {
|
|
|
|
fn eq(&self, _: &Baz) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-12 13:22:18 +00:00
|
|
|
// Implementing `Hash` with a derived `PartialEq` is fine. See #2627
|
|
|
|
|
2019-10-28 06:34:29 +00:00
|
|
|
#[derive(PartialEq)]
|
|
|
|
struct Bah;
|
|
|
|
|
2019-11-01 19:12:08 +00:00
|
|
|
impl std::hash::Hash for Bah {
|
|
|
|
fn hash<H: std::hash::Hasher>(&self, _: &mut H) {}
|
|
|
|
}
|
|
|
|
|
2019-10-28 06:34:29 +00:00
|
|
|
fn main() {}
|