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>;
|
2023-09-29 16:17:22 +00:00
|
|
|
| ^^^ there is an 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>;
|
2023-09-29 16:17:22 +00:00
|
|
|
| ^^^ there is an 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 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`.
|