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

           Summary: BitArray.opCmp is invalid on 64x
           Product: D
           Version: unspecified
          Platform: x86_64
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: [email protected]
        ReportedBy: [email protected]


--- Comment #0 from nbelov <[email protected]> 2013-09-19 22:30:52 PDT 
---
bool[] v1;
v1.length = 33;
v1[] = false;

bool[] v2;
v2.length = 33;
v2[] = false;

v1[31] = true;
v2[32] = true;

BitArray a1; a1.init(v1);
BitArray a2; a2.init(v2);
assert(a1 > a2);

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

Reply via email to