https://issues.dlang.org/show_bug.cgi?id=13635
Issue ID: 13635
Summary: implicit class constructor should instantiate
templated base class constructor
Product: D
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P1
Component: DMD
Assignee: [email protected]
Reporter: [email protected]
cat > bug.d << CODE
class Base
{
this(this Derived)() {}
}
class Foo : Base
{
// this() { super(); } // explicit constructor needed
}
CODE
dmd -c bug
----
bug.d(6): Error: class bug.Foo Cannot implicitly generate a default ctor when
base class bug.Base is missing a default ctor
----
The default constructor code should try to call the super class constructor
without arguments instead of detecting a `this()` function.
--