http://d.puremagic.com/issues/show_bug.cgi?id=9686
Summary: Wrong ambiguity overloading error for functions with
signed/unsigned integral arguments
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Denis Shelomovskij <[email protected]> 2013-03-11
08:55:29 MSK ---
---
void f(ulong) { }
void f(long) { }
void main()
{
ushort us;
short s;
uint ui;
int i;
static assert(!__traits(compiles, f(us))); // OK
static assert(!__traits(compiles, f(ui))); // OK
f(s); // "matches both" error, but matches only `f(long)`
f(i); // same error
}
---
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------