2022-01-14 07:52:30 -06:00
|
|
|
error[E0046]: not all trait items implemented, missing one of: `eq`, `neq`
|
2021-12-21 09:40:50 -06:00
|
|
|
--> $DIR/rustc_must_implement_one_of.rs:41:1
|
|
|
|
|
|
|
|
|
LL | impl Equal for T3 {}
|
2022-01-14 07:52:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ missing one of `eq`, `neq` in implementation
|
2021-12-21 09:40:50 -06:00
|
|
|
|
|
|
|
|
note: required because of this annotation
|
|
|
|
--> $DIR/rustc_must_implement_one_of.rs:3:1
|
|
|
|
|
|
|
|
|
LL | #[rustc_must_implement_one_of(eq, neq)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-12-21 09:40:50 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0046`.
|