rust/tests/ui/wf/wf-trait-fn-arg.next.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
653 B
Plaintext
Raw Permalink Normal View History

error[E0277]: the trait bound `Self: Eq` is not satisfied
2025-01-22 06:40:43 +00:00
--> $DIR/wf-trait-fn-arg.rs:16:23
2018-08-08 12:28:26 +00:00
|
LL | fn bar(&self, x: &Bar<Self>);
| ^^^^^^^^^ the trait `Eq` is not implemented for `Self`
|
note: required by a bound in `Bar`
--> $DIR/wf-trait-fn-arg.rs:11:15
|
LL | struct Bar<T: Eq + ?Sized> {
| ^^ required by this bound in `Bar`
help: consider further restricting `Self`
|
LL | fn bar(&self, x: &Bar<Self>) where Self: Eq;
| ++++++++++++++
2018-08-08 12:28:26 +00:00
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0277`.