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

Vladimir Panteleev <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dlang-bugzilla@thecybershad
                   |                            |ow.net

--- Comment #6 from Vladimir Panteleev <[email protected]> ---
It would be a breaking change.

///////////// test.d /////////////
string fun() @safe
{
    immutable char[3] arr = "foo";
    string s = arr[];
    string r;
    r ~= s;
    return r;
}
//////////////////////////////////

--

Reply via email to