October 29, 2016
https://issues.dlang.org/show_bug.cgi?id=16646

--- Comment #1 from Temtaime <temtaime@gmail.com> ---
Also it generated strange statements.

ref rename(names...)() return
        if (names.length == 0 || allSatisfy!(isSomeString, typeof(names)))

to

ref return rename(names...)() if (names.length == 0 ||
allSatisfy!(isSomeString, typeof(names)))

which leads to errors.

--
March 24, 2022
https://issues.dlang.org/show_bug.cgi?id=16646

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |razvan.nitu1305@gmail.com
         Resolution|---                         |WORKSFORME

--- Comment #2 from RazvanN <razvan.nitu1305@gmail.com> ---
I cannot reproduce this. I just used the header generator on the latest version of druntime's core.atomic and the resulting .di file compiles successfully. There were numerous fixes for the header generator since 2016 so I assume this was fixed.

--