https://issues.dlang.org/show_bug.cgi?id=17055
--- Comment #2 from Ralph Alexander Bariz <[email protected]> --- ////////////////////////////////////////////////////////// mixin template Foo() { int x; this() { this.x=5; } } class Bar { mixin Foo; this(int x) { this.x=x; } } void main() { import std.stdio; auto a = new Bar(); writeln(a.x); } ////////////////////////////////////////////////////////// leads to /d994/f417.d(25): Error: constructor f417.Bar.this (int x) is not callable using argument types () --
