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

error: aborting due to 1 previous error

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