summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-62375.stderr
blob: f6d7968c0c40513f891fe9c92bca2da9839f2538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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`.