]> git.lizzy.rs Git - rust.git/blob - tests/ui/array-slice-vec/array_const_index-0.rs
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.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 }