blob: 203a89285306d3f029411c778763c27c1cccf45f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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`.
|