Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
consts
/
const-index-feature-gate.rs
blob: 3537a1790cc6d18b4f072e52f97b61a3c9d152c6 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
const
ARR
:
[
usize
;
1
]
=
[
2
];
const
ARR2
:
[
i32
;
ARR
[
0
]]
=
[
5
,
6
];
fn
main
()
{
}