mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 14:52:56 +03:00
10 lines
195 B
Rust
10 lines
195 B
Rust
#![expect(incomplete_features)]
|
|
#![feature(min_generic_const_args)]
|
|
|
|
fn takes_empty_array<const A: []>() {}
|
|
//~^ ERROR: expected type, found `]`
|
|
|
|
fn main() {
|
|
takes_empty_array::<{ [] }>();
|
|
}
|