Hello. Thanks for any assistance.Can I acquire the address of a class object, not a class variable (i.e. the instantiations of the class) but the object definition itself?
```d
class MyClass {char c}
...
MyClass MyClassVar;
writeln(&MyClassVar); // this compiles
writeln(&MyClass); // this does not
```
