]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-trait-fn-where-clause.stderr
Auto merge of #87150 - rusticstuff:simplify_wrapping_neg, r=m-ou-se
[rust.git] / src / test / ui / wf / wf-trait-fn-where-clause.stderr
1 error[E0277]: the trait bound `Self: Eq` is not satisfied
2   --> $DIR/wf-trait-fn-where-clause.rs:10:49
3    |
4 LL | struct Bar<T:Eq+?Sized> { value: Box<T> }
5    |              -- required by this bound in `Bar`
6 ...
7 LL |     fn bar(&self) where Self: Sized, Bar<Self>: Copy;
8    |                                                 ^^^^ the trait `Eq` is not implemented for `Self`
9    |
10 help: consider further restricting `Self`
11    |
12 LL |     fn bar(&self) where Self: Sized, Bar<Self>: Copy, Self: Eq;
13    |                                                     ^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.