https://issues.dlang.org/show_bug.cgi?id=16370
--- Comment #5 from Steven Schveighoffer <schveiguy at yahoo.com> ---
Tested with this, and it compiled:
void main()
{
int foo(T)(T t)
{
return 1;
}
foo(0);
foo("hi");
}
--