blob: 1f77cb6a3923f767e869765b56b35030a9f79dca [file] [log] [blame]
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;
}