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