http://d.puremagic.com/issues/show_bug.cgi?id=1683
------- Comment #1 from afb at algonet.se  2007-11-22 01:07 -------
It works OK if you use the portable version of varargs:
import std.stdio;
import std.stdarg;
void test(TypeInfo[] arguments, va_list argptr)
{
    writefln("test(TypeInfo[] arguments, va_list argptr)");
}
--