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