rust/src/test/ui/const-generics/issues/issue-73491.rs

12 lines
295 B
Rust
Raw Normal View History

// [full] check-pass
// revisions: full min
#![cfg_attr(full, feature(const_param_types))]
#![cfg_attr(full, allow(incomplete_features))]
2020-07-16 05:35:23 -05:00
const LEN: usize = 1024;
fn hoge<const IN: [u32; LEN]>() {}
//[min]~^ ERROR `[u32; _]` is forbidden as the type of a const generic parameter
2020-07-16 05:35:23 -05:00
fn main() {}