]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/issue-59029-1.stderr
Rollup merge of #100112 - RalfJung:assert_send_and_sync, r=m-ou-se
[rust.git] / src / test / ui / traits / issue-59029-1.stderr
1 error[E0220]: associated type `Res` not found for `Self`
2   --> $DIR/issue-59029-1.rs:5:52
3    |
4 LL | trait MkSvc<Target, Req> = Svc<Target> where Self::Res: Svc<Req>;
5    |                                                    ^^^ there is a similarly named associated type `Res` in the trait `Svc`
6
7 error[E0220]: associated type `Res` not found for `Self`
8   --> $DIR/issue-59029-1.rs:5:52
9    |
10 LL | trait MkSvc<Target, Req> = Svc<Target> where Self::Res: Svc<Req>;
11    |                                                    ^^^ there is a similarly named associated type `Res` in the trait `Svc`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0220`.