summaryrefslogtreecommitdiffstats
path: root/src/test/ui/missing/missing-items/missing-type-parameter.stderr
blob: 722539fca6b8e228686ef120c9b798bafe975ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0282]: type annotations needed
  --> $DIR/missing-type-parameter.rs:4:5
   |
LL |     foo();
   |     ^^^ cannot infer type of the type parameter `X` declared on the function `foo`
   |
help: consider specifying the generic argument
   |
LL |     foo::<X>();
   |        +++++

error: aborting due to previous error

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