Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
consts
/
issue-29798.rs
blob: f7470d7aac908288550da023c5efb9c4a66e7836 [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:index out of bounds: the len is 5 but the index is 5
//@ needs-subprocess
const
fn
test
(
x
:
usize
)
->
i32
{
[
42
;
5
][
x
]
}
fn
main
()
{
let
_
=
test
(
5
);
}