summary refs log tree commit diff
path: root/src/test/ui/const-generics/issues/issue-73491.rs
blob: 4f6c44ad2cdb0fed2205297405f08dc67dd46480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// [full] check-pass
// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
#![cfg_attr(min, feature(min_const_generics))]

const LEN: usize = 1024;

fn hoge<const IN: [u32; LEN]>() {}
//[min]~^ ERROR `[u32; _]` is forbidden as the type of a const generic parameter

fn main() {}