July 06, 2016
https://issues.dlang.org/show_bug.cgi?id=12647

Per Nordlöw <per.nordlow@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |per.nordlow@gmail.com

--- Comment #5 from Per Nordlöw <per.nordlow@gmail.com> ---
If this gets fixed the bug comment at

file:///home/per/ware/dlang_org/web/phobos-prerelease/std_algorithm_comparison.html#.either

should be removed.

--
December 23, 2016
https://issues.dlang.org/show_bug.cgi?id=12647

greenify <greeenify@gmail.com> changed:

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

--- Comment #6 from greenify <greeenify@gmail.com> ---
This a really annoying limitation during the process of annotating Phobos
unittests.
It leads from a nice one-liner, e.g.

assertThrown!AssertError(arr.stride(0));

to be replaced with 10 lines:

bool passed = false;
scope (success) assert(passed);
try
{
    cast(void) arr.stride(0);
}
catch (AssertError unused)
{
    passed = true;
}

--
December 24, 2016
https://issues.dlang.org/show_bug.cgi?id=12647

--- Comment #7 from greenify <greeenify@gmail.com> ---
There's a newer attempt by LemonBoy:

https://github.com/dlang/dmd/pull/6348

--
December 27, 2016
https://issues.dlang.org/show_bug.cgi?id=12647

greenify <greeenify@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |16240

--
March 01, 2017
https://issues.dlang.org/show_bug.cgi?id=12647

--- Comment #8 from Lucia Cojocaru <lucia.mcojocaru@gmail.com> ---
*** Issue 17136 has been marked as a duplicate of this issue. ***

--
October 17, 2019
https://issues.dlang.org/show_bug.cgi?id=12647

ZombineDev <petar.p.kirov@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |petar.p.kirov@gmail.com
            Summary|Lazy parameter evaluation   |Allow specifying lazy
                   |should be marked as nothrow |parameter function
                   |                            |attributes and infer them
                   |                            |when possible

--
November 01, 2020
https://issues.dlang.org/show_bug.cgi?id=12647

johanengelen@weka.io changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |industry
                 CC|                            |johanengelen@weka.io

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

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P3

--
1 2
Next ›   Last »