Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
issue-29914-3.rs
blob: 575cd30e229d98e2122a32a253f74ccfc644db5d [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
const
ARR
:
[
usize
;
5
]
=
[
5
,
4
,
3
,
2
,
1
];
const
BLA
:
usize
=
ARR
[
ARR
[
3
]];
fn
main
()
{
assert_eq
!(
3
,
BLA
);
}