summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/partialeq_ne_impl.stderr
blob: 2210e706d930d74669bc8191347e805c5b2e0a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: re-implementing `PartialEq::ne` is unnecessary
  --> $DIR/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