]> git.proxmox.com Git - rustc.git/blame - src/test/ui/type/type-check/cannot_infer_local_or_array.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / type / type-check / cannot_infer_local_or_array.stderr
CommitLineData
dc9dc135 1error[E0282]: type annotations needed for `[_; 0]`
923072b8 2 --> $DIR/cannot_infer_local_or_array.rs:2:9
cc61c64b 3 |
532ac7d7 4LL | let x = [];
923072b8
FG
5 | ^
6 |
7help: consider giving `x` an explicit type, where the placeholders `_` are specified
8 |
9LL | let x: [_; 0] = [];
10 | ++++++++
cc61c64b 11
041b39d2 12error: aborting due to previous error
cc61c64b 13
0531ce1d 14For more information about this error, try `rustc --explain E0282`.