blob: b06aa5fc728d9da9532ee085abf2890d3ed650ca [file] [log] [blame]
// error-pattern:index out of bounds: the len is 5 but the index is 5
const fn test(x: usize) -> i32 {
[42;5][x]
}
fn main () {
let _ = test(5);
}