import std.stdio; class C{} struct S{ C c; } void main(){ S s; s.c = new C; writeln(typeid(s.c)); }