Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-29798.rs
blob: 5eff5d1915bad5130c63916e1714025a5204d74d [
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
);
}