]> git.proxmox.com Git - rustc.git/blame - src/test/ui/where-clauses/where-clauses-unsatisfied.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / where-clauses / where-clauses-unsatisfied.stderr
CommitLineData
b7449926 1error[E0277]: the trait bound `Struct: std::cmp::Eq` is not satisfied
0731742a 2 --> $DIR/where-clauses-unsatisfied.rs:6:10
b7449926 3 |
e1599b0c 4LL | fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b }
ba9703b0 5 | -- required by this bound in `equal`
e1599b0c 6...
b7449926
XL
7LL | drop(equal(&Struct, &Struct))
8 | ^^^^^ the trait `std::cmp::Eq` is not implemented for `Struct`
b7449926
XL
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0277`.