mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
27 lines
742 B
Plaintext
27 lines
742 B
Plaintext
error[E0369]: binary operation `==` cannot be applied to type `A`
|
|
--> $DIR/issue-62375.rs:7:7
|
|
|
|
|
LL | a == A::Value;
|
|
| - ^^ -------- fn(()) -> A {A::Value}
|
|
| |
|
|
| A
|
|
|
|
|
note: an implementation of `PartialEq<fn(()) -> A {A::Value}>` might be missing for `A`
|
|
--> $DIR/issue-62375.rs:1:1
|
|
|
|
|
LL | enum A {
|
|
| ^^^^^^ must implement `PartialEq<fn(()) -> A {A::Value}>`
|
|
help: consider annotating `A` with `#[derive(PartialEq)]`
|
|
|
|
|
LL + #[derive(PartialEq)]
|
|
LL | enum A {
|
|
|
|
|
help: use parentheses to construct this tuple variant
|
|
|
|
|
LL | a == A::Value(/* () */);
|
|
| ++++++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|