Fix #29
This commit is contained in:
parent
146f892f37
commit
700ad601c1
|
@ -350,7 +350,8 @@ private:
|
|||
.equalRange(current.index).empty)
|
||||
{
|
||||
writeToken();
|
||||
write(" ");
|
||||
if (current.type != tok!"*" && current.type != tok!")")
|
||||
write(" ");
|
||||
break;
|
||||
}
|
||||
goto binary;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
unittest
|
||||
{
|
||||
char * * buf = cast(char * * ) mem.xmalloc(dim * (char * ).sizeof);
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
unittest
|
||||
{
|
||||
char** buf = cast(char**) mem.xmalloc(dim * (char*).sizeof);
|
||||
}
|
Loading…
Reference in New Issue