mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
27 lines
740 B
Plaintext
27 lines
740 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 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|