mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
111 B
D
15 lines
111 B
D
shared struct A
|
|
{
|
|
this(this);
|
|
}
|
|
|
|
struct B
|
|
{
|
|
A a;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
shared B b1;
|
|
auto b2 = b1;
|
|
}
|