2019-03-11 16:39:40 -07:00
|
|
|
error[E0220]: associated type `Res` not found for `Self`
|
2019-12-19 11:23:57 -08:00
|
|
|
--> $DIR/issue-59029-1.rs:5:52
|
2019-03-11 16:39:40 -07:00
|
|
|
|
|
|
|
|
LL | trait MkSvc<Target, Req> = Svc<Target> where Self::Res: Svc<Req>;
|
2022-07-11 06:53:01 +00:00
|
|
|
| ^^^ there is a similarly named associated type `Res` in the trait `Svc`
|
2019-03-11 16:39:40 -07:00
|
|
|
|
2020-01-08 20:02:10 +03:00
|
|
|
error[E0220]: associated type `Res` not found for `Self`
|
|
|
|
--> $DIR/issue-59029-1.rs:5:52
|
|
|
|
|
|
|
|
|
LL | trait MkSvc<Target, Req> = Svc<Target> where Self::Res: Svc<Req>;
|
2022-07-11 06:53:01 +00:00
|
|
|
| ^^^ there is a similarly named associated type `Res` in the trait `Svc`
|
2020-01-08 20:02:10 +03:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-03-11 16:39:40 -07:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0220`.
|