void fun(T...)() {}
void fun(T...)(uint) {}
void main()
{
fun!(main)(3u);
fun!(main)(3);
}
This test fails in two different ways for the two lines of main. It shouldn't fail at all.
Comment #1 by lovelydear — 2012-04-24T03:11:39Z
Also fails on 2.059
Comment #2 by andrej.mitrovich — 2013-02-09T08:13:59Z
The first one doesn't fail, but the second one does (2.061).