]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/check_const-feature-gated.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / consts / check_const-feature-gated.rs
CommitLineData
416331ca
XL
1// run-pass
2
92a42be0 3const ARR: [usize; 1] = [2];
223e47cc 4
92a42be0
SL
5fn main() {
6 let _ = 5 << ARR[0];
7}