rust/src/test/ui/array_const_index-1.rs
2018-12-25 21:08:33 -07:00

9 lines
186 B
Rust

const A: [i32; 0] = [];
const B: i32 = A[1];
//~^ index out of bounds: the len is 0 but the index is 1
//~| ERROR any use of this value will cause an error
fn main() {
let _ = B;
}