mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
700 B
Plaintext
16 lines
700 B
Plaintext
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>;
|
|
| ^^^ there is a similarly named associated type `Res` in the trait `Svc`
|
|
|
|
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>;
|
|
| ^^^ there is a similarly named associated type `Res` in the trait `Svc`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0220`.
|