Closed
Description
When formatting
#![feature(const_generics)]
fn foo<
const N: [u8; {
struct Inner<'a>(&'a ());
3
}],
>() {}
rustfmt changes the empty function argument list from ()
to (&'a ()
, which is incorrect.
#![feature(const_generics)]
fn foo<
const N: [u8; {
struct Inner<'a>(&'a ());
3
}],
>(&'a () {
}
Note that the original code snippet current does not yet compile due to the unfinished nature of const generics,
it should compile in the future though.