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

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |WORKSFORME

--- Comment #3 from [email protected] ---
Seems to have been fixed in git HEAD:
-----
$ cat test.d
void bug7558(string x, int y, double z) {}

void main()
{
   bug7558(4, 2.2);
}   
$ dmd test.d
test.d(5): Error: function test.bug7558 (string x, int y, double z) is not
callable using argument types (int, double)
$ 
-----
No extraneous errors were given.

--

Reply via email to