]> git.lizzy.rs Git - rust.git/blob - src/test/ui/where-clauses/where-clauses-unsatisfied.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / where-clauses / where-clauses-unsatisfied.stderr
1 error[E0277]: the trait bound `Struct: std::cmp::Eq` is not satisfied
2   --> $DIR/where-clauses-unsatisfied.rs:16:10
3    |
4 LL |     drop(equal(&Struct, &Struct))
5    |          ^^^^^ the trait `std::cmp::Eq` is not implemented for `Struct`
6    |
7 note: required by `equal`
8   --> $DIR/where-clauses-unsatisfied.rs:11:1
9    |
10 LL | fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b }
11    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.