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

bearophile_h...@eml.cc changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bearophile_h...@eml.cc

--- Comment #1 from bearophile_h...@eml.cc ---
This works:

void main() {
    import std.algorithm: sort;
    import std.string: representation;
    char[] arr = "ACBA".dup;
    arr.representation.sort();
    assert(arr == "AABC");
}

--

Reply via email to