November 13, 2018
https://issues.dlang.org/show_bug.cgi?id=19395

Manu <turkeyman@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |C++

--
June 14, 2019
https://issues.dlang.org/show_bug.cgi?id=19395

Mathias LANG <pro.mathias.lang@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |pro.mathias.lang@gmail.com
         Resolution|---                         |INVALID

--- Comment #1 from Mathias LANG <pro.mathias.lang@gmail.com> ---
DMD does substitution. However substitution is not done on basic types.

The following C++ code:
void fun(wchar_t x, wchar_t y, bool b) {}
Mangles to:
__Z3funwwb

On my machine (OSX, so Clang).

Hit me up on Slack if there's some POSIX mangling issue you need to troubleshoot.

--