rust/tests/ui/traits/issue-91594.stderr

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

19 lines
772 B
Plaintext
Raw Normal View History

2021-12-27 00:09:19 -06:00
error[E0277]: the trait bound `Foo: HasComponent<()>` is not satisfied
--> $DIR/issue-91594.rs:10:19
2021-12-27 00:09:19 -06:00
|
LL | impl HasComponent<<Foo as Component<Foo>>::Interface> for Foo {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `HasComponent<()>` is not implemented for `Foo`
2021-12-27 00:09:19 -06:00
|
= help: the trait `HasComponent<<Foo as Component<Foo>>::Interface>` is implemented for `Foo`
note: required for `Foo` to implement `Component<Foo>`
2021-12-27 00:09:19 -06:00
--> $DIR/issue-91594.rs:13:27
|
LL | impl<M: HasComponent<()>> Component<M> for Foo {
| ---------------- ^^^^^^^^^^^^ ^^^
| |
| unsatisfied trait bound introduced here
2021-12-27 00:09:19 -06:00
error: aborting due to 1 previous error
2021-12-27 00:09:19 -06:00
For more information about this error, try `rustc --explain E0277`.