rust-clippy/tests/ui/partialeq_ne_impl.stderr

11 lines
306 B
Text
Raw Normal View History

error: re-implementing `PartialEq::ne` is unnecessary
2018-10-06 16:18:06 +00:00
--> $DIR/partialeq_ne_impl.rs:20:5
|
2018-10-06 16:18:06 +00:00
20 | fn ne(&self, _: &Foo) -> bool { false }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::partialeq-ne-impl` implied by `-D warnings`
2018-01-16 16:06:27 +00:00
error: aborting due to previous error