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

--- Comment #9 from Andrej Mitrovic <[email protected]> ---
(In reply to bearophile_hugs from comment #8)
> Now

No, not now, that's how it already was. 2.065:

-----
void bar(float) {}
void bar(double) {}
void bar(real) {}
void main() {
    bar(1);
}
-----

-----
test.d(5): Error: test.bar called with argument types (int) matches both:
    test.d(1): test.bar(float _param_0)
and:
    test.d(3): test.bar(real _param_0)
-----

File it as a separate bug.

--

Reply via email to