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