summaryrefslogtreecommitdiffstats
path: root/tests/ui/inference/need_type_info/self-ty-in-path.stderr
blob: 04b521dbdb3609c6c2c3efad581646c99e363b3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0282]: type annotations needed
  --> $DIR/self-ty-in-path.rs:8:9
   |
LL |         Self::func_a();
   |         ^^^^^^^^^^^^ cannot infer type of the type parameter `U` declared on the associated function `func_a`
   |
help: consider specifying the generic argument
   |
LL |         Self::func_a::<U>();
   |                     +++++

error: aborting due to previous error

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