https://issues.dlang.org/show_bug.cgi?id=20440

mipri <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from mipri <[email protected]> ---
with v2.086.1, either of the following permits the test case to compile:

in phobos/std/bigint.d, add a 'ref' to the following return type:

    /// Assignment from another BigInt.
    BigInt opAssign(T:BigInt)(T x) pure @nogc

in druntime/import/object.d, change the last line of require from

    return found ? *p : (*p = value);

to

    if (!found) *p = value;
    return *p;

--

Reply via email to