xxxxxxxxxx
void main()
{
import std.stdio;
{
class C
{
int i;
}
}
{
class C
{
int i;
}
C c1 = new C();
//c1.i++; // no segfault without this line
C c2 = c1;
}
}