]> git.proxmox.com Git - rustc.git/blame - tests/ui/where-clauses/where-clauses-unsatisfied.stderr
Merge 1.70 into proxmox/bookworm
[rustc.git] / tests / ui / where-clauses / where-clauses-unsatisfied.stderr
CommitLineData
1b1a35ee 1error[E0277]: the trait bound `Struct: Eq` is not satisfied
0731742a 2 --> $DIR/where-clauses-unsatisfied.rs:6:10
b7449926
XL
3 |
4LL | drop(equal(&Struct, &Struct))
1b1a35ee 5 | ^^^^^ the trait `Eq` is not implemented for `Struct`
94222f64
XL
6 |
7note: required by a bound in `equal`
8 --> $DIR/where-clauses-unsatisfied.rs:1:45
9 |
10LL | fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b }
11 | ^^ required by this bound in `equal`
04454e1e
FG
12help: consider annotating `Struct` with `#[derive(Eq)]`
13 |
353b0b11
FG
14LL + #[derive(Eq)]
15LL | struct Struct;
04454e1e 16 |
b7449926
XL
17
18error: aborting due to previous error
19
20For more information about this error, try `rustc --explain E0277`.