https://issues.dlang.org/show_bug.cgi?id=20032
ag0aep6g <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |INVALID --- Comment #1 from ag0aep6g <[email protected]> --- (In reply to shove from comment #0) > alias A = char[]; > alias ImmuTypeA = ImmutableOf!A; > pragma(msg, ImmuTypeA); // -> immutable(string), Should be: > immutable(char[]) immutable(string) and immutable(char[]) are the same type. string = immutable(char)[] immutable(string) = immutable(immutable(char)[]) = immutable(char[]) I'm closing this issue as invalid. Feel free reopen if I'm missing the point. --
