]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-13446.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-13446.stderr
CommitLineData
8faf50e0 1error[E0308]: mismatched types
0731742a 2 --> $DIR/issue-13446.rs:3:26
8faf50e0
XL
3 |
4LL | static VEC: [u32; 256] = vec![];
1b1a35ee 5 | ^^^^^^ expected array `[u32; 256]`, found struct `Vec`
8faf50e0 6 |
60c5eb7d 7 = note: expected array `[u32; 256]`
1b1a35ee 8 found struct `Vec<_>`
17df50a5 9 = note: this error originates in the macro `vec` (in Nightly builds, run with -Z macro-backtrace for more info)
8faf50e0
XL
10
11error: aborting due to previous error
12
13For more information about this error, try `rustc --explain E0308`.