2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the trait bound `Struct: Eq` is not satisfied
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/where-clauses-unsatisfied.rs:6:10
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | drop(equal(&Struct, &Struct))
|
2020-09-02 07:40:56 +00:00
|
|
|
| ^^^^^ the trait `Eq` is not implemented for `Struct`
|
2021-07-31 16:26:55 +00:00
|
|
|
|
|
|
|
|
note: required by a bound in `equal`
|
|
|
|
--> $DIR/where-clauses-unsatisfied.rs:1:45
|
|
|
|
|
|
|
|
|
LL | fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b }
|
|
|
|
| ^^ required by this bound in `equal`
|
2022-03-31 14:58:45 +00:00
|
|
|
help: consider annotating `Struct` with `#[derive(Eq)]`
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + #[derive(Eq)]
|
|
|
|
LL | struct Struct;
|
2022-03-31 14:58:45 +00:00
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|