mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 00:41:27 +00:00
14 lines
331 B
Rust
14 lines
331 B
Rust
//@ [full] check-pass
|
|
//@ revisions: full min
|
|
#![cfg_attr(full, feature(adt_const_params))]
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
|
|
|
struct Foo<const V: [usize; 0] > {}
|
|
//[min]~^ ERROR `[usize; 0]` is forbidden as the type of a const generic parameter
|
|
|
|
type MyFoo = Foo<{ [] }>;
|
|
|
|
fn main() {
|
|
let _ = Foo::<{ [] }> {};
|
|
}
|