summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/need_type_info/expr-struct-type-relative-enum.stderr
blob: 68ecb3813483716e9d8d684a99255cce52f513d5 (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-enum.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`.