Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-eval
/
ub-slice-get-unchecked.rs
blob: e805ac01c9d065e0a2c444eaf3a3c36679d6a0fc [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #110395
const
A
:
[();
5
]
=
[(),
(),
(),
(),
()];
// Since the indexing is on a ZST, the addresses are all fine,
// but we should still catch the bad range.
const
B
:
&[()]
=
unsafe
{
A
.
get_unchecked
(
3.
.
1
)
};
fn
main
()
{}