blob: 91f22d42f3553494974334025d91d02c39cc26b2 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice9273a.d(19): Error: constructor ice9273a.C.__ctor!().this no match for implicit super() call in constructor
fail_compilation/ice9273a.d(23): Error: template instance ice9273a.C.__ctor!() error instantiating
---
*/
template CtorMixin()
{
this(T)() {}
}
class B
{
mixin CtorMixin!();
}
class C : B
{
this()() {}
}
void main()
{
auto c = new C();
}