DCD/tests/tc009/file.d

19 lines
153 B
D

class Alpha
{
this(int x);
}
class Beta : Alpha
{
this(int x, int y)
{
super();
this();
}
}
void main(string[] args)
{
auto b = new Beta();
}