]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/issues/issue-83249.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / const-generics / issues / issue-83249.stderr
CommitLineData
a2a8927a 1error[E0282]: type annotations needed
923072b8 2 --> $DIR/issue-83249.rs:19:9
a2a8927a
XL
3 |
4LL | let _ = foo([0; 1]);
923072b8
FG
5 | ^
6 |
7help: consider giving this pattern a type
8 |
9LL | let _: _ = foo([0; 1]);
10 | +++
a2a8927a
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.