]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/derive.stderr
iterate List by value
[rust.git] / tests / ui / derive.stderr
index d435b52db4417be75bfd8628f87b45580f528696..1328a9b31077e0182722c3b1c4479cfd138728e6 100644 (file)
-error: you are deriving `Hash` but have implemented `PartialEq` explicitly
-  --> $DIR/derive.rs:18:10
-   |
-18 | #[derive(Hash)]
-   |          ^^^^
-   |
-   = note: #[deny(derive_hash_xor_eq)] implied by #[deny(warnings)]
-note: lint level defined here
-  --> $DIR/derive.rs:6:9
-   |
-6  | #![deny(warnings)]
-   |         ^^^^^^^^
-note: `PartialEq` implemented here
-  --> $DIR/derive.rs:22:1
-   |
-22 |   impl PartialEq for Bar {
-   |  _^ starting here...
-23 | |     fn eq(&self, _: &Bar) -> bool { true }
-24 | | }
-   | |_^ ...ending here
-
-error: you are deriving `Hash` but have implemented `PartialEq` explicitly
-  --> $DIR/derive.rs:26:10
-   |
-26 | #[derive(Hash)]
-   |          ^^^^
+error: you are implementing `Clone` explicitly on a `Copy` type
+  --> $DIR/derive.rs:8:1
    |
-   = note: #[deny(derive_hash_xor_eq)] implied by #[deny(warnings)]
-note: `PartialEq` implemented here
-  --> $DIR/derive.rs:30:1
+LL | / impl Clone for Qux {
+LL | |     fn clone(&self) -> Self {
+LL | |         Qux
+LL | |     }
+LL | | }
+   | |_^
    |
-30 |   impl PartialEq<Baz> for Baz {
-   |  _^ starting here...
-31 | |     fn eq(&self, _: &Baz) -> bool { true }
-32 | | }
-   | |_^ ...ending here
+   = note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings`
+note: consider deriving `Clone` or removing `Copy`
+  --> $DIR/derive.rs:8:1
+   |
+LL | / impl Clone for Qux {
+LL | |     fn clone(&self) -> Self {
+LL | |         Qux
+LL | |     }
+LL | | }
+   | |_^
 
-error: you are implementing `Hash` explicitly but have derived `PartialEq`
-  --> $DIR/derive.rs:37:1
-   |
-37 |   impl Hash for Bah {
-   |  _^ starting here...
-38 | |
-39 | |     fn hash<H: Hasher>(&self, _: &mut H) {}
-40 | | }
-   | |_^ ...ending here
+error: you are implementing `Clone` explicitly on a `Copy` type
+  --> $DIR/derive.rs:32:1
    |
-   = note: #[deny(derive_hash_xor_eq)] implied by #[deny(warnings)]
-note: `PartialEq` implemented here
-  --> $DIR/derive.rs:34:10
+LL | / impl<'a> Clone for Lt<'a> {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
    |
-34 | #[derive(PartialEq)]
-   |          ^^^^^^^^^
+note: consider deriving `Clone` or removing `Copy`
+  --> $DIR/derive.rs:32:1
+   |
+LL | / impl<'a> Clone for Lt<'a> {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
 
 error: you are implementing `Clone` explicitly on a `Copy` type
-  --> $DIR/derive.rs:45:1
+  --> $DIR/derive.rs:44:1
    |
-45 |   impl Clone for Qux {
-   |  _^ starting here...
-46 | |
-47 | |     fn clone(&self) -> Self { Qux }
-48 | | }
-   | |_^ ...ending here
+LL | / impl Clone for BigArray {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
    |
-   = note: #[deny(expl_impl_clone_on_copy)] implied by #[deny(warnings)]
-note: lint level defined here
-  --> $DIR/derive.rs:6:9
-   |
-6  | #![deny(warnings)]
-   |         ^^^^^^^^
 note: consider deriving `Clone` or removing `Copy`
-  --> $DIR/derive.rs:45:1
-   |
-45 |   impl Clone for Qux {
-   |  _^ starting here...
-46 | |
-47 | |     fn clone(&self) -> Self { Qux }
-48 | | }
-   | |_^ ...ending here
+  --> $DIR/derive.rs:44:1
+   |
+LL | / impl Clone for BigArray {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
 
 error: you are implementing `Clone` explicitly on a `Copy` type
-  --> $DIR/derive.rs:70:1
+  --> $DIR/derive.rs:56:1
    |
-70 |   impl<'a> Clone for Lt<'a> {
-   |  _^ starting here...
-71 | |
-72 | |     fn clone(&self) -> Self { unimplemented!() }
-73 | | }
-   | |_^ ...ending here
+LL | / impl Clone for FnPtr {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
    |
-   = note: #[deny(expl_impl_clone_on_copy)] implied by #[deny(warnings)]
 note: consider deriving `Clone` or removing `Copy`
-  --> $DIR/derive.rs:70:1
-   |
-70 |   impl<'a> Clone for Lt<'a> {
-   |  _^ starting here...
-71 | |
-72 | |     fn clone(&self) -> Self { unimplemented!() }
-73 | | }
-   | |_^ ...ending here
+  --> $DIR/derive.rs:56:1
+   |
+LL | / impl Clone for FnPtr {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
 
-error: aborting due to 5 previous errors
+error: aborting due to 4 previous errors