http://d.puremagic.com/issues/show_bug.cgi?id=4749
Summary: Templated & non-templated constructors conflicting
Product: D
Version: D2
Platform: x86_64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Mitch Hayenga <[email protected]> 2010-08-28 21:52:39
PDT ---
I don't have a D compiler on me at the moment, but this came up earlier today.
Heres a simplified case.
// This breaks due to the constructors (template error message from DMD)
struct A {
Variant v;
string s;
this(T)(T val, string str) {
v = Variant(val);
str = s;
}
this(int val) {
v = val;
}
}
// This works
struct A {
Variant v;
string s;
this(T)(T val, string str) {
v = Variant(val);
str = s;
}
this(T)(int val) { // Useless template parameter
v = val;
}
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------