When using dmd 2.054 the following fails with a bus error on OS X and a segfault on linux: ---- void print(void delegate(string...) dg) { dg(); } ---- This worked as expected in dmd 2.053.
Note that this happens regardless of the number of arguments when calling dg().
This hack works as a workaround: ---- void print(void delegate(string) _dg) { void dg(string a...) { _dg(a); } dg(); } ----
*** This issue has been marked as a duplicate of issue 6351 ***