Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-33903.rs
blob: 613aa121a47bf5394c9a640c5bb1ab114e61280a [
file
] [
log
] [
blame
]
// 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
()
{}