[Issue 5979] New: bigint rvalue equality

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed May 11 09:50:21 PDT 2011


http://d.puremagic.com/issues/show_bug.cgi?id=5979

           Summary: bigint rvalue equality
           Product: D
           Version: D2
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody at puremagic.com
        ReportedBy: dpx.infinity at gmail.com


--- Comment #0 from Vladimir Matveev <dpx.infinity at gmail.com> 2011-05-11 09:46:20 PDT ---
Code

import std.bigint;

BigInt foo() {
    return BigInt(128);
}

void main() {
    BigInt bar = BigInt(128);
    assert(foo() == bar);
    assert(bar == foo());  // *** HERE
}

does not compile with the following error on the marked line:
test.d(10): Error: foo() is not an lvalue

It seems that is because of the ref parameter of the opEquals method in the
BigInt structure. Obviously it is not needed for the parameter to be a
reference in this case, though it could be thought as a possible performance
tweak (I don't know for certain about the correctnes of this though).

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list