http://d.puremagic.com/issues/show_bug.cgi?id=9851
Summary: Mixed-in constructor is not taken into account during
construction
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 Andrej Mitrovic <[email protected]> 2013-03-31
15:07:09 PDT ---
mixin template IntCtor()
{
this(int x)
{
}
}
struct S
{
mixin IntCtor!();
this(string x) { }
}
void main()
{
// Error: constructor test.S.this (string x) is not
// callable using argument types (int)
auto s = S(1);
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------