dlang-community / dfmt

Dfmt is a formatter for D source code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`@trusted` and `return` attributes get sandwiched

dkorpel opened this issue · comments

struct S
{
    void f() @trusted return
    {
    }
}

Gets formatted to:

struct S
{
    void f() @trustedreturn
    {
    }
}

Turning the two attributes into one erroneous attribute.