blob: ad0eb7e8243e58ef9a63a0c3473d82c650b61c0e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | //@ [full] check-pass
//@ revisions: full min
#![cfg_attr(full, feature(adt_const_params))]
#![cfg_attr(full, allow(incomplete_features))]
const LEN: usize = 1024;
fn hoge<const IN: [u32; LEN]>() {}
//[min]~^ ERROR `[u32; LEN]` is forbidden as the type of a const generic parameter
fn main() {}
 |