summary refs log tree commit diff
path: root/src/test/ui/issues/issue-33903.rs
blob: 6a8305dabebf8d9e2ff27b4213ce7606e4ea7419 (plain)
1
2
3
4
5
6
7
8
9
10
// build-pass (FIXME(62277): could be 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() {}