https://issues.dlang.org/show_bug.cgi?id=13689
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] --- This works: void main() { import std.algorithm: sort; import std.string: representation; char[] arr = "ACBA".dup; arr.representation.sort(); assert(arr == "AABC"); } --
