| error: you are implementing `Clone` explicitly on a `Copy` type |
| --> tests/ui/derive.rs:13:1 |
| | |
| LL | / impl Clone for Qux { |
| LL | | |
| LL | | |
| LL | | fn clone(&self) -> Self { |
| ... | |
| LL | | } |
| | |_^ |
| | |
| = help: consider deriving `Clone` or removing `Copy` |
| = note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::expl_impl_clone_on_copy)]` |
| |
| error: you are implementing `Clone` explicitly on a `Copy` type |
| --> tests/ui/derive.rs:39:1 |
| | |
| LL | / impl<'a> Clone for Lt<'a> { |
| LL | | |
| LL | | |
| LL | | fn clone(&self) -> Self { |
| ... | |
| LL | | } |
| | |_^ |
| | |
| = help: consider deriving `Clone` or removing `Copy` |
| |
| error: you are implementing `Clone` explicitly on a `Copy` type |
| --> tests/ui/derive.rs:52:1 |
| | |
| LL | / impl Clone for BigArray { |
| LL | | |
| LL | | |
| LL | | fn clone(&self) -> Self { |
| ... | |
| LL | | } |
| | |_^ |
| | |
| = help: consider deriving `Clone` or removing `Copy` |
| |
| error: you are implementing `Clone` explicitly on a `Copy` type |
| --> tests/ui/derive.rs:65:1 |
| | |
| LL | / impl Clone for FnPtr { |
| LL | | |
| LL | | |
| LL | | fn clone(&self) -> Self { |
| ... | |
| LL | | } |
| | |_^ |
| | |
| = help: consider deriving `Clone` or removing `Copy` |
| |
| error: you are implementing `Clone` explicitly on a `Copy` type |
| --> tests/ui/derive.rs:87:1 |
| | |
| LL | / impl<T: Clone> Clone for Generic2<T> { |
| LL | | |
| LL | | |
| LL | | fn clone(&self) -> Self { |
| ... | |
| LL | | } |
| | |_^ |
| | |
| = help: consider deriving `Clone` or removing `Copy` |
| |
| error: docs for unsafe field missing `# Safety` section |
| --> tests/ui/derive.rs:117:9 |
| | |
| LL | pub unsafe actual: (), |
| | ^^^^^^^^^^^^^^^^^^^^^ |
| | |
| = note: `-D clippy::missing-safety-doc` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::missing_safety_doc)]` |
| |
| error: aborting due to 6 previous errors |
| |