dmd/compiler/test/compilable/test18474.d
2022-07-09 18:53:07 +02:00

15 lines
111 B
D

shared struct A
{
this(this);
}
struct B
{
A a;
}
void main()
{
shared B b1;
auto b2 = b1;
}