[Issue 7327] New: Nested overload sets are not resolved correctly
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Jan 20 10:04:20 PST 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7327
Summary: Nested overload sets are not resolved correctly
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: dawg at dawgfoto.de
--- Comment #0 from dawg at dawgfoto.de 2012-01-20 10:04:18 PST ---
---- buga.d ----
void foo() {}
---- bugb.d ----
public import bugc, bugd;
---- bugc.d ----
void foo(int, int) {}
---- bugd.d ----
void foo(int) {}
---- main.d ----
import buga;
import bugb;
void main()
{
foo(2);
}
-----
dmd -c main
----
bug.d(6): Error: buga.foo at buga.d(1) conflicts with __anonymous at
bug.d(6): Error: function buga.foo () is not callable using argument types
(int)
bug.d(6): Error: expected 0 arguments, not 1 for non-variadic function type
void()
--------------------------------------
This should resolve to bugd.foo.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list