]> git.proxmox.com Git - rustc.git/blob - src/test/ui/where-clauses/where-clauses-unsatisfied.stderr
New upstream version 1.33.0+dfsg1
[rustc.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:6: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:1: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`.