rust/tests/ui/consts/issue-33903.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
249 B
Rust
Raw Normal View History

// check-pass
#![allow(dead_code)]
// Issue 33903:
// Built-in indexing should be used even when the index is not
// trivially an integer
2018-08-19 08:30:23 -05:00
// Only built-in indexing can be used in constant expressions
const FOO: i32 = [12, 34][0 + 1];
fn main() {}