summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/partialeq_ne_impl.stderr
blob: dc01a375060b98397001682c9360998c2385e674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: re-implementing `PartialEq::ne` is unnecessary
  --> tests/ui/partialeq_ne_impl.rs:9:5
   |
LL | /     fn ne(&self, _: &Foo) -> bool {
LL | |
LL | |
LL | |         false
LL | |     }
   | |_____^
   |
   = note: `-D clippy::partialeq-ne-impl` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::partialeq_ne_impl)]`

error: aborting due to 1 previous error