now:
-------------
class Cfoo {
void* adrThis;
void saveThis(void* adr) { adrThis = adr; }
}
...
Cfoo foo = new Cfoo(); foo.saveThis(&foo);
shall be
--------------
class Cfoo {
void* adrThis;
this() {
adrThis = ?????????
}
}
...
Cfoo foo = new Cfoo();
