mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
17 lines
142 B
D
17 lines
142 B
D
struct Test1a
|
|
{
|
|
this(this)
|
|
{
|
|
}
|
|
}
|
|
|
|
struct Test1b
|
|
{
|
|
Test1a a;
|
|
}
|
|
|
|
struct Test1c
|
|
{
|
|
const Test1b b;
|
|
@disable this(this);
|
|
}
|