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



--- Comment #1 from bearophile_h...@eml.cc 2012-01-28 06:19:26 PST ---
Another workaround:

import std.algorithm: sort, equal;
void main() {
    auto a1 = [1, 2];
    auto a2 = [2, 1];
    assert(equal(a1.sort(), a2.sort())); // OK
}

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

Reply via email to