2019-03-11 23:39:40 +00:00
|
|
|
error[E0220]: associated type `Res` not found for `Self`
|
2019-12-19 19:23:57 +00:00
|
|
|
--> $DIR/issue-59029-1.rs:5:52
|
2019-03-11 23:39:40 +00: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 23:39:40 +00:00
|
|
|
|
2020-01-08 17:02:10 +00: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`
|
2023-10-04 18:34:50 +00:00
|
|
|
|
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-03-11 23:39:40 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0220`.
|