about summary refs log tree commit diff
path: root/tests/ui/consts/issue-29914-3.rs
blob: 575cd30e229d98e2122a32a253f74ccfc644db5d (plain)
1
2
3
4
5
6
7
//@ run-pass
const ARR: [usize; 5] = [5, 4, 3, 2, 1];
const BLA: usize = ARR[ARR[3]];

fn main() {
    assert_eq!(3, BLA);
}