summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-91762.stderr
blob: c2785fee387fa986d13220a9491f3a37b4af18a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0282]: type annotations needed
  --> $DIR/issue-91762.rs:25:15
   |
LL |         ret = <Self::Base as Functor>::fmap(arg);
   |               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the associated function `fmap`
   |
help: consider specifying the generic arguments
   |
LL |         ret = <Self::Base as Functor>::fmap::<T, U>(arg);
   |                                            ++++++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0282`.