]> git.proxmox.com Git - rustc.git/blame_incremental - 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
1error[E0282]: type annotations needed for `Foo<N>`
2 --> $DIR/doesnt_infer.rs:11:9
3 |
4LL | let foo = Foo::foo();
5 | ^^^
6 |
7help: consider giving `foo` an explicit type, where the value of const parameter `N` is specified
8 |
9LL | let foo: Foo<N> = Foo::foo();
10 | ++++++++
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.