Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
issue-33903.rs
blob: 0355f4e7046e0b6e428379f60db281a104456a65 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
// Issue 33903:
// Built-in indexing should be used even when the index is not
// trivially an integer
// Only built-in indexing can be used in constant expressions
const
FOO
:
i32
=
[
12
,
34
][
0
+
1
];
fn
main
()
{}