xxxxxxxxxx
struct A {
int[] data;
this(ref return scope inout A rhs) inout { data = rhs.data; }
}
struct B {
A a;
void main()
{
B b;
B b2 = b;