Thread overview
[Issue 17493] nothrow constructor may throw
Jun 12, 2017
Walter Bright
Jun 12, 2017
Walter Bright
Feb 03, 2018
Walter Bright
Mar 26, 2018
Seb
Mar 27, 2018
Walter Bright
Mar 27, 2018
Seb
Sep 15, 2018
Walter Bright
June 12, 2017
https://issues.dlang.org/show_bug.cgi?id=17493

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://issues.dlang.org/sh
                   |                            |ow_bug.cgi?id=17494

--
June 12, 2017
https://issues.dlang.org/show_bug.cgi?id=17493

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
https://github.com/dlang/dmd/pull/6896

--
June 12, 2017
https://issues.dlang.org/show_bug.cgi?id=17493

greensunny12@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |greensunny12@gmail.com

--- Comment #2 from greensunny12@gmail.com ---
This also affects D-YAML:

https://github.com/dlang-community/D-YAML/issues/66

--
February 03, 2018
https://issues.dlang.org/show_bug.cgi?id=17493

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Walter Bright <bugzilla@digitalmars.com> ---
https://github.com/dlang/dmd/pull/6913 reverted 6816 which had caused the regression, so this bug is fixed.

--
March 26, 2018
https://issues.dlang.org/show_bug.cgi?id=17493

Seb <greensunny12@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--
March 27, 2018
https://issues.dlang.org/show_bug.cgi?id=17493

--- Comment #4 from Walter Bright <bugzilla@digitalmars.com> ---
Why was this reopened?

--
March 27, 2018
https://issues.dlang.org/show_bug.cgi?id=17493

Seb <greensunny12@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Seb <greensunny12@gmail.com> ---
(accidentally reopened - sorry)

--
September 15, 2018
https://issues.dlang.org/show_bug.cgi?id=17493

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |INVALID

--- Comment #6 from Walter Bright <bugzilla@digitalmars.com> ---
Changed this to INVALID. A constructor marked nothrow cannot have a field with a throwing destructor, because the destructor can get called if the constructor fails to complete.

--