2020-04-16 15:50:32 +09:00
|
|
|
// run-fail
|
2017-07-25 11:31:59 +09:00
|
|
|
// error-pattern:index out of bounds: the len is 5 but the index is 5
|
2020-05-08 00:39:02 +09:00
|
|
|
// ignore-emscripten no processes
|
2017-07-25 11:31:59 +09:00
|
|
|
|
|
|
|
const fn test(x: usize) -> i32 {
|
|
|
|
[42;5][x]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main () {
|
|
|
|
let _ = test(5);
|
|
|
|
}
|