This commit is contained in:
Hackerpilot 2015-03-04 17:49:02 -08:00
parent 146f892f37
commit 700ad601c1
3 changed files with 10 additions and 1 deletions

View File

@ -350,6 +350,7 @@ private:
.equalRange(current.index).empty)
{
writeToken();
if (current.type != tok!"*" && current.type != tok!")")
write(" ");
break;
}

4
tests/issue0029.d Normal file
View File

@ -0,0 +1,4 @@
unittest
{
char * * buf = cast(char * * ) mem.xmalloc(dim * (char * ).sizeof);
}

4
tests/issue0029.d.ref Normal file
View File

@ -0,0 +1,4 @@
unittest
{
char** buf = cast(char**) mem.xmalloc(dim * (char*).sizeof);
}