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