Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
mir
/
mir_indexing_oob_2.rs
blob: a9e85057015365be5dbb997476ddb708d74f93aa [
file
] [
log
] [
blame
]
// run-fail
// error-pattern:index out of bounds: the len is 5 but the index is 10
// ignore-emscripten no processes
const
C
:
&
'
static
[
u8
;
5
]
=
b
"hello"
;
#[
allow
(
unconditional_panic
)]
fn
test
()
->
u8
{
C
[
10
]
}
fn
main
()
{
test
();
}