https://issues.dlang.org/show_bug.cgi?id=24310

--- Comment #4 from Walter Bright <[email protected]> ---
I suspect it might work if we added to stdarg.d:

    void __va_start(T)(va_list* ap, ref T parmn)
    {
        va_start(*ap, parmn);
    }

and to __builtins.di:

    alias __va_start = imported!"core.stdc.stdarg".__va_start;

--

Reply via email to