mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
374 B
Rust
12 lines
374 B
Rust
// revisions: full min
|
|
#![cfg_attr(full, feature(adt_const_params))]
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
|
|
|
fn foo<const LEN: usize, const DATA: [u8; LEN]>() {}
|
|
//~^ ERROR the type of const parameters must not
|
|
//[min]~^^ ERROR `[u8; LEN]` is forbidden as the type of a const generic parameter
|
|
fn main() {
|
|
const DATA: [u8; 4] = *b"ABCD";
|
|
foo::<4, DATA>();
|
|
}
|