xxxxxxxxxx
import std.stdio;
void main()
{
struct Y { double q; }
struct X { Y[] a; }
X x;
auto r = &x.a;
*r ~= Y(10.0);
*r ~= Y(20.0);
writeln(x);
}