xxxxxxxxxx
import std.stdio;
class A
{
this() { writeln(__FUNCTION__); }
}
class B : A
void main()
A a = new A; // Output A.this
a = new B; // Output A.this, B.this.