Sign in
fuchsia
/
third_party
/
rust
/
41601a8c95240cada94c13466a1fea02e5fe87ed
/
.
/
src
/
test
/
ui
/
array_const_index-0.rs
blob: 3422aeae8c5bee38f9708aa54d71571cdf148eff [
file
] [
log
] [
blame
]
const
A
:
&
'
static
[
i32
]
=
&[];
const
B
:
i32
=
(&
A
)[
1
];
//~^ index out of bounds: the len is 0 but the index is 1
//~| ERROR any use of this value will cause an error
fn
main
()
{
let
_
=
B
;
}