mixin template foobar() { this() { } } class One { mixin foobar; this(int a) //without this ctor all will be fine { this(); //default ctor is available from here, but not from Two } }; class Two:One { }; ... Error: Cannot implicitly generate a default ctor when base class main.One is missing a default ctor. Windows 7, x86_64, DMD 2.066.
THIS ISSUE HAS BEEN MOVED TO GITHUB https://github.com/dlang/dmd/issues/18871 DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB