]> git.proxmox.com Git - rustc.git/blame - tests/ui/const-generics/defaults/doesnt_infer.stderr
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / const-generics / defaults / doesnt_infer.stderr
CommitLineData
5099ac24 1error[E0282]: type annotations needed for `Foo<N>`
923072b8 2 --> $DIR/doesnt_infer.rs:11:9
3c0e092e
XL
3 |
4LL | let foo = Foo::foo();
923072b8
FG
5 | ^^^
6 |
353b0b11 7help: consider giving `foo` an explicit type, where the value of const parameter `N` is specified
923072b8
FG
8 |
9LL | let foo: Foo<N> = Foo::foo();
10 | ++++++++
3c0e092e
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.