]> git.proxmox.com Git - rustc.git/blame - src/test/ui/suggestions/fn-needing-specified-return-type-param.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / suggestions / fn-needing-specified-return-type-param.stderr
CommitLineData
923072b8 1error[E0282]: type annotations needed
f9f354fc
XL
2 --> $DIR/fn-needing-specified-return-type-param.rs:3:13
3 |
4LL | let _ = f;
923072b8
FG
5 | ^ cannot infer type of the type parameter `A` declared on the function `f`
6 |
7help: consider specifying the generic argument
8 |
9LL | let _ = f::<A>;
10 | +++++
f9f354fc
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.