mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
26 lines
379 B
Rust
26 lines
379 B
Rust
#![allow(dead_code)]
|
|
|
|
struct Foo;
|
|
|
|
impl PartialEq for Foo {
|
|
fn eq(&self, _: &Foo) -> bool {
|
|
true
|
|
}
|
|
fn ne(&self, _: &Foo) -> bool {
|
|
false
|
|
}
|
|
}
|
|
|
|
struct Bar;
|
|
|
|
impl PartialEq for Bar {
|
|
fn eq(&self, _: &Bar) -> bool {
|
|
true
|
|
}
|
|
#[allow(clippy::partialeq_ne_impl)]
|
|
fn ne(&self, _: &Bar) -> bool {
|
|
false
|
|
}
|
|
}
|
|
|
|
fn main() {}
|