mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
21 lines
672 B
Plaintext
21 lines
672 B
Plaintext
error[E0277]: the trait bound `Struct: Eq` is not satisfied
|
|
--> $DIR/where-clauses-unsatisfied.rs:6:10
|
|
|
|
|
LL | drop(equal(&Struct, &Struct))
|
|
| ^^^^^ the trait `Eq` is not implemented for `Struct`
|
|
|
|
|
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`
|
|
help: consider annotating `Struct` with `#[derive(Eq)]`
|
|
|
|
|
LL + #[derive(Eq)]
|
|
LL | struct Struct;
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|