Superstar64 via Digitalmars-d Fri, 07 Oct 2016 08:37:32 -0700
If you want a class without a root object just use extern(C++). Also this is apparently legal: extern (C++) class Root : Object { };
int main() { auto root = new Root; Object obj = root; // is this safe? return 0; }