main.d(23): Error: expected 0 arguments, not 1"
template C ()
{
this (int i)
{
}
}
class A
{
mixin C;
this ()
{
}
}
void main ()
{
auto a = new A(3);
}
