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