blob: 454e9c507f336a7eb1b0ce2ca32cd2c225bc6df3 [file] [log] [blame]
shared struct A
{
this(this);
}
struct B
{
A a;
}
void main()
{
shared B b1;
auto b2 = b1;
}