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