Files
rust/tests/ui/wf/wf-trait-fn-arg.current.stderr

20 lines
653 B
Plaintext
Raw 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 14:28:26 +02:00
|
LL | fn bar(&self, x: &Bar<Self>);
| ^^^^^^^^^ the trait `Eq` is not implemented for `Self`
|
note: required by a bound in `Bar`
2025-01-22 06:40:43 +00:00
--> $DIR/wf-trait-fn-arg.rs:11:15
|
2025-01-22 06:40:43 +00:00
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 14:28:26 +02:00
error: aborting due to 1 previous error
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0277`.