rust/tests/ui/derive.stderr

79 lines
1.9 KiB
Plaintext
Raw Normal View History

error: you are deriving `Hash` but have implemented `PartialEq` explicitly
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:17:10
|
17 | #[derive(Hash)]
| ^^^^
|
= note: `-D derive-hash-xor-eq` implied by `-D warnings`
note: `PartialEq` implemented here
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:20:1
|
20 | / impl PartialEq for Bar {
21 | | fn eq(&self, _: &Bar) -> bool { true }
22 | | }
| |_^
error: you are deriving `Hash` but have implemented `PartialEq` explicitly
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:24:10
|
24 | #[derive(Hash)]
| ^^^^
|
note: `PartialEq` implemented here
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:27:1
|
27 | / impl PartialEq<Baz> for Baz {
28 | | fn eq(&self, _: &Baz) -> bool { true }
29 | | }
| |_^
error: you are implementing `Hash` explicitly but have derived `PartialEq`
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:34:1
|
34 | / impl Hash for Bah {
35 | | fn hash<H: Hasher>(&self, _: &mut H) {}
36 | | }
| |_^
|
note: `PartialEq` implemented here
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:31:10
|
31 | #[derive(PartialEq)]
| ^^^^^^^^^
error: you are implementing `Clone` explicitly on a `Copy` type
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:41:1
|
41 | / impl Clone for Qux {
42 | | fn clone(&self) -> Self { Qux }
43 | | }
| |_^
|
= note: `-D expl-impl-clone-on-copy` implied by `-D warnings`
note: consider deriving `Clone` or removing `Copy`
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:41:1
|
41 | / impl Clone for Qux {
42 | | fn clone(&self) -> Self { Qux }
43 | | }
| |_^
error: you are implementing `Clone` explicitly on a `Copy` type
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:65:1
|
65 | / impl<'a> Clone for Lt<'a> {
66 | | fn clone(&self) -> Self { unimplemented!() }
67 | | }
| |_^
|
note: consider deriving `Clone` or removing `Copy`
2017-08-01 17:54:21 +02:00
--> $DIR/derive.rs:65:1
|
65 | / impl<'a> Clone for Lt<'a> {
66 | | fn clone(&self) -> Self { unimplemented!() }
67 | | }
| |_^
2017-07-03 06:37:30 +02:00
error: aborting due to 5 previous errors