xxxxxxxxxx
import std.stdio;
void main()
{
auto p = Point(3);
auto q = p.x;
writeln(typeof(q).stringof);
const(Point)*[long] q2;
q2[1] = new Point(3);
writeln(*q2[1]);
}
struct Point
long x;