]> git.proxmox.com Git - rustc.git/blob - tests/ui/array-slice-vec/array_const_index-0.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / array-slice-vec / array_const_index-0.rs
1 const A: &'static [i32] = &[];
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 }