1 2 3 4 5 6 7 8 9
// check-pass #![feature(const_generics)] #![allow(incomplete_features)] const LEN: usize = 1024; fn hoge<const IN: [u32; LEN]>() {} fn main() {}