April 27, 2015
https://issues.dlang.org/show_bug.cgi?id=12246

Steven Schveighoffer <schveiguy@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |schveiguy@yahoo.com

--- Comment #2 from Steven Schveighoffer <schveiguy@yahoo.com> ---
As an update here, I don't disagree there is a problem. But I disagree with the solution. Disabling the checks during unit tests means disabling them during Phobos unit tests.

I don't think we should do this. I'd rather fix the problem of running unit tests for templates by default.

I'll leave the bug open, because it's still a bug.

--
May 03, 2021
https://issues.dlang.org/show_bug.cgi?id=12246

Berni44 <bugzilla@bernis-buecher.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@bernis-buecher.de
         Resolution|---                         |FIXED

--- Comment #3 from Berni44 <bugzilla@bernis-buecher.de> ---
Meanwhile this has been replaced by

version (StdUnittest) debug = RBDoChecks;

As far as I understand it, this has fixed the problem...

--