blob: e60acdc07aa4e3374f0b2528977fadfc50efc193 [file] [log] [blame]
import A16;
import core.stdc.stdio;
class B16 : AA16
{
public
this()
{
super();
printf("class B16\n");
}
}
int main()
{
new B16;
return 0;
}