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

--- Comment #5 from Steven Schveighoffer <[email protected]> ---
Tested with this, and it compiled:

void main()
{
    int foo(T)(T t)
    {
        return 1;
    }

    foo(0);
    foo("hi");
}

--

Reply via email to