mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
298 B
Rust
12 lines
298 B
Rust
//@ [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() {}
|