summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/issues/issue-74101.rs
blob: 6b606b9460fe22f95afc7d30e03488c213da00ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// [full] check-pass
// revisions: full min
#![cfg_attr(full, feature(adt_const_params))]
#![cfg_attr(full, allow(incomplete_features))]

fn test<const N: [u8; 1 + 2]>() {}
//[min]~^ ERROR `[u8; _]` is forbidden as the type of a const generic parameter

struct Foo<const N: [u8; 1 + 2]>;
//[min]~^ ERROR `[u8; _]` is forbidden as the type of a const generic parameter

fn main() {}