]> git.proxmox.com Git - rustc.git/blob - src/test/ui/wf/wf-trait-fn-ret.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / wf / wf-trait-fn-ret.stderr
1 error[E0277]: the trait bound `Self: std::cmp::Eq` is not satisfied
2 --> $DIR/wf-trait-fn-ret.rs:10:22
3 |
4 LL | struct Bar<T:Eq+?Sized> { value: Box<T> }
5 | -- required by this bound in `Bar`
6 ...
7 LL | fn bar(&self) -> &Bar<Self>;
8 | ^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::cmp::Eq`
9 | |
10 | the trait `std::cmp::Eq` is not implemented for `Self`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.