July 11, 2005
void main(char [][] args)
{
char [][] newarray;
newarray ~= "abcdefg" ~ ' ';
}

Line 4 causes the compiler to say this:

Internal error: ..\ztc\cgcs.c 353

for D compiler v .127


July 12, 2005
Matt Watkins wrote:
> void main(char [][] args)
> {
> char [][] newarray;
> newarray ~= "abcdefg" ~ ' ';
> }
> 
> Line 4 causes the compiler to say this:
> 
> Internal error: ..\ztc\cgcs.c 353
> 
> for D compiler v .127
> 

Update to DMD v .128, it fixes this bug.