xxxxxxxxxx
import std.stdio;
class Block{}
class Foo {
Block[] array = new Block[](10);
this() {
for (int i = 0; i < array.length; i++) {
array[i] = new Block();
}
}
}
void main()
{
auto foo1 = new Foo();
auto foo2 = new Foo();
writeln(foo1.array[0] is foo2.array[0]);
}