blob: 4021dfcc6eb7d462d59c8c104b4d82ac71448b8c [file] [log] [blame]
const A: &'static [i32] = &[];
const B: i32 = (&A)[1];
//~^ index out of bounds: the length is 0 but the index is 1
//~| ERROR any use of this value will cause an error
fn main() {
let _ = B;
}