]> git.proxmox.com Git - rustc.git/blob - src/test/ui/array-slice-vec/array_const_index-1.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / array-slice-vec / array_const_index-1.rs
1 const A: [i32; 0] = [];
2 const B: i32 = A[1];
3 //~^ index out of bounds: the length is 0 but the index is 1
4 //~| ERROR evaluation of constant value failed
5
6 fn main() {
7 let _ = B;
8 }