Skip to content

destructive formatting when dealing with const generics #4310

Closed
@lcnr

Description

@lcnr

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions