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