[Issue 4702] New: Long Postfix not working with cross-module overloading
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Aug 21 08:37:42 PDT 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4702
Summary: Long Postfix not working with cross-module overloading
Product: D
Version: D2
Platform: Other
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: andrej.mitrovich at gmail.com
--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2010-08-21 08:37:39 PDT ---
widget.d:
void fun(int x)
{
}
widget.d:
void fun(int x)
{
}
main.d:
import widget;
import io;
void main()
{
long y = 10L;
fun(y); // fine, no errors, goes to io.fun
writeln(typeid(10L)); // writes long
fun(10L); // error: io.fun at io.d(4) conflicts with widget.fun at
widget.d(4)
}
--
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