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

Andrej Mitrovic <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Andrej Mitrovic <[email protected]> ---
Workaround:

template test (int a)
{
    void test ( Args...) ( Args args ){}
}

void main ( char[][] arg)
{
    test!(5)(3);
}

--

Reply via email to