blob: 5eff5d1915bad5130c63916e1714025a5204d74d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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);
}
|