]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/derive.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / derive.stderr
index 97b5344ee7f71ca97b9604e11c706cf8e03e0a9c..875018961090714a64f3c55161333715fb308d51 100644 (file)
 error: you are deriving `Hash` but have implemented `PartialEq` explicitly
-  --> $DIR/derive.rs:18:10
+  --> $DIR/derive.rs:16:10
    |
-18 | #[derive(Hash)]
+LL | #[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: `#[deny(clippy::derive_hash_xor_eq)]` on by default
 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
+  --> $DIR/derive.rs:19:1
+   |
+LL | / impl PartialEq for Bar {
+LL | |     fn eq(&self, _: &Bar) -> bool {
+LL | |         true
+LL | |     }
+LL | | }
+   | |_^
 
 error: you are deriving `Hash` but have implemented `PartialEq` explicitly
-  --> $DIR/derive.rs:26:10
+  --> $DIR/derive.rs:25:10
    |
-26 | #[derive(Hash)]
+LL | #[derive(Hash)]
    |          ^^^^
    |
-   = note: #[deny(derive_hash_xor_eq)] implied by #[deny(warnings)]
 note: `PartialEq` implemented here
-  --> $DIR/derive.rs:30:1
-   |
-30 |   impl PartialEq<Baz> for Baz {
-   |  _^ starting here...
-31 | |     fn eq(&self, _: &Baz) -> bool { true }
-32 | | }
-   | |_^ ...ending here
+  --> $DIR/derive.rs:28:1
+   |
+LL | / impl PartialEq<Baz> for Baz {
+LL | |     fn eq(&self, _: &Baz) -> bool {
+LL | |         true
+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 | | //~^ ERROR you are implementing `Hash` explicitly but have derived `PartialEq`
-39 | |     fn hash<H: Hasher>(&self, _: &mut H) {}
-40 | | }
-   | |_^ ...ending here
+LL | / impl Hash for Bah {
+LL | |     fn hash<H: Hasher>(&self, _: &mut H) {}
+LL | | }
+   | |_^
    |
-   = note: #[deny(derive_hash_xor_eq)] implied by #[deny(warnings)]
 note: `PartialEq` implemented here
   --> $DIR/derive.rs:34:10
    |
-34 | #[derive(PartialEq)]
+LL | #[derive(PartialEq)]
    |          ^^^^^^^^^
 
 error: you are implementing `Clone` explicitly on a `Copy` type
-  --> $DIR/derive.rs:45:1
+  --> $DIR/derive.rs:44:1
+   |
+LL | / impl Clone for Qux {
+LL | |     fn clone(&self) -> Self {
+LL | |         Qux
+LL | |     }
+LL | | }
+   | |_^
+   |
+   = note: `-D clippy::expl-impl-clone-on-copy` implied by `-D warnings`
+note: consider deriving `Clone` or removing `Copy`
+  --> $DIR/derive.rs:44:1
+   |
+LL | / impl Clone for Qux {
+LL | |     fn clone(&self) -> Self {
+LL | |         Qux
+LL | |     }
+LL | | }
+   | |_^
+
+error: you are implementing `Clone` explicitly on a `Copy` type
+  --> $DIR/derive.rs:68:1
+   |
+LL | / impl<'a> Clone for Lt<'a> {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
    |
-45 |   impl Clone for Qux {
-   |  _^ starting here...
-46 | | //~^ ERROR you are implementing `Clone` explicitly on a `Copy` type
-47 | |     fn clone(&self) -> Self { Qux }
-48 | | }
-   | |_^ ...ending here
+note: consider deriving `Clone` or removing `Copy`
+  --> $DIR/derive.rs:68: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:80:1
    |
-   = note: #[deny(expl_impl_clone_on_copy)] implied by #[deny(warnings)]
-note: lint level defined here
-  --> $DIR/derive.rs:6:9
+LL | / impl Clone for BigArray {
+LL | |     fn clone(&self) -> Self {
+LL | |         unimplemented!()
+LL | |     }
+LL | | }
+   | |_^
    |
-6  | #![deny(warnings)]
-   |         ^^^^^^^^
 note: consider deriving `Clone` or removing `Copy`
-  --> $DIR/derive.rs:45:1
-   |
-45 |   impl Clone for Qux {
-   |  _^ starting here...
-46 | | //~^ ERROR you are implementing `Clone` explicitly on a `Copy` type
-47 | |     fn clone(&self) -> Self { Qux }
-48 | | }
-   | |_^ ...ending here
+  --> $DIR/derive.rs:80: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:92:1
    |
-70 |   impl<'a> Clone for Lt<'a> {
-   |  _^ starting here...
-71 | | //~^ ERROR you are implementing `Clone` explicitly on a `Copy` type
-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 | | //~^ ERROR you are implementing `Clone` explicitly on a `Copy` type
-72 | |     fn clone(&self) -> Self { unimplemented!() }
-73 | | }
-   | |_^ ...ending here
+  --> $DIR/derive.rs:92: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 7 previous errors