rust/tests/ui/array-slice-vec/array_const_index-0.rs
2025-04-08 23:06:31 +03:00

8 lines
198 B
Rust

const A: &'static [i32] = &[];
const B: i32 = (&A)[1];
//~^ NOTE index out of bounds: the length is 0 but the index is 1
//~| ERROR evaluation of constant value failed
fn main() {
let _ = B;
}