May 25, 2023
https://issues.dlang.org/show_bug.cgi?id=23937

--- Comment #1 from a11e99z <black80@bk.ru> ---
ldc --release -nogc empl.d is working. strange.

--
May 26, 2023
https://issues.dlang.org/show_bug.cgi?id=23937

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

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

--- Comment #2 from RazvanN <razvan.nitu1305@gmail.com> ---
Hello, this does not seem to be a dmd-druntime issue. Note that LDC has a modified version of druntime so from dmd's perspective this issue has nothing actionable.

You can report this to ldc.

> //scope( exit) c.~C(); // C++ style. doesnt compile

This works if you call c.__dtor();

--