]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-index-feature-gate.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / consts / const-index-feature-gate.rs
CommitLineData
b7449926 1// run-pass
0bf4aa26 2#![allow(dead_code)]
92a42be0 3const ARR: [usize; 1] = [2];
0531ce1d 4const ARR2: [i32; ARR[0]] = [5, 6];
223e47cc 5
92a42be0
SL
6fn main() {
7}