summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/need_type_info/expr-struct-type-relative.stderr
blob: 397d8e7be04ff90585b492f259f1b6fb4c368906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0282]: type annotations needed
  --> $DIR/expr-struct-type-relative.rs:16:9
   |
LL |         needs_infer();
   |         ^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the function `needs_infer`
   |
help: consider specifying the generic argument
   |
LL |         needs_infer::<T>();
   |                    +++++

error: aborting due to previous error

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