xxxxxxxxxx
struct T
{
int i;
this(ref return scope inout typeof(this) src)
inout @safe pure nothrow @nogc
i = src.i;
}
struct S
T t;
auto bar(T a)
S(a);