xxxxxxxxxx
struct S
{
bool isThisNull() { return &this is null; }
}
void main()
import std.stdio;
S* p = null;
writeln((*p).isThisNull); // true