diff --git a/src/dfmt.d b/src/dfmt.d index 8c26d1f..387890e 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -350,7 +350,8 @@ private: .equalRange(current.index).empty) { writeToken(); - write(" "); + if (current.type != tok!"*" && current.type != tok!")") + write(" "); break; } goto binary; diff --git a/tests/issue0029.d b/tests/issue0029.d new file mode 100644 index 0000000..75d0c8b --- /dev/null +++ b/tests/issue0029.d @@ -0,0 +1,4 @@ +unittest +{ + char * * buf = cast(char * * ) mem.xmalloc(dim * (char * ).sizeof); +} diff --git a/tests/issue0029.d.ref b/tests/issue0029.d.ref new file mode 100644 index 0000000..b18662a --- /dev/null +++ b/tests/issue0029.d.ref @@ -0,0 +1,4 @@ +unittest +{ + char** buf = cast(char**) mem.xmalloc(dim * (char*).sizeof); +}