]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/infer/one-param-uninferred.min.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / const-generics / infer / one-param-uninferred.min.stderr
CommitLineData
fc512014
XL
1error[E0282]: type annotations needed
2 --> $DIR/one-param-uninferred.rs:15:23
3 |
4LL | let _: [u8; 17] = foo();
5 | ^^^ cannot infer the value of const parameter `M` declared on the function `foo`
6 |
7help: consider specifying the const argument
8 |
9LL | let _: [u8; 17] = foo::<M>();
10 | ^^^^^^^^
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.