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

fn main() {
    assert_eq!(3, ARR[ARR[3]]);
}