mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
249 B
Rust
11 lines
249 B
Rust
// 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() {}
|