Source code

Revision control

Copy as Markdown

Other Tools

//error: struct `X' is only partially defined
//error: union `Y' is only partially defined
//error: struct `Z' is only partially defined
struct X { Y y; };
union Y { Z; };
struct Z { X x; };
[ChildProc=any]
protocol undefMutualRecStructUnion {
child: async __delete__(X x);
};