]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-array-oob.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / consts / const-array-oob.rs
CommitLineData
8bb4bdeb
XL
1const FOO: [usize; 3] = [1, 2, 3];
2const BAR: usize = FOO[5]; // no error, because the error below occurs before regular const eval
92a42be0
SL
3
4const BLUB: [u32; FOO[4]] = [5, 6];
a1dfa0c6 5//~^ ERROR evaluation of constant value failed [E0080]
1b1a35ee 6//~| index out of bounds: the length is 3 but the index is 4
c34b1796
AL
7
8fn main() {
9 let _ = BAR;
223e47cc 10}