December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=17920

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P2

--
July 19, 2023
https://issues.dlang.org/show_bug.cgi?id=17920

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

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

--- Comment #1 from RazvanN <razvan.nitu1305@gmail.com> ---
I cannot reproduce this for neither postblit, nor copy constructor. When I compile the initial test case with latest master, I get:

fromMutable.val: 102
postblit: 2, dtor: 2
fromConst.val: 102
postblit: 4, dtor: 4

Which is the correct behavior.

--