summaryrefslogtreecommitdiffstats
path: root/src/test/ui/array-slice-vec/array_const_index-2.rs
blob: 8ee225f5cdfeacd1af58ff30a98c4eda1f7c5a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
#![allow(dead_code)]
#![allow(stable_features)]

#![feature(const_indexing)]

fn main() {
    const ARR: [i32; 6] = [42, 43, 44, 45, 46, 47];
    const IDX: usize = 3;
    const VAL: i32 = ARR[IDX];
    const BLUB: [i32; (ARR[0] - 41) as usize] = [5];
}