Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
const-generics
/
mgca
/
array-expr-empty.rs
blob: d37c6f2fcfe35fc371a56e25f31c81317f3d4785 [
file
] [
log
] [
blame
] [
edit
]
#![
expect
(
incomplete_features
)]
#![
feature
(
min_generic_const_args
)]
fn
takes_empty_array
<
const
A
:
[]>()
{}
//~^ ERROR: expected type, found `]`
fn
main
()
{
takes_empty_array
::<{
[]
}>();
}