I noticed that the code below doesn't work, and I was wondering if it's by design (hopefully not):

    immutable SEP = ", ";
    ["a", "b"].join(SEP);

The fact that SEP is immutable(char[]) instead of immutable(char)[] shouldn't break the function.

Reply via email to