mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
19 lines
177 B
D
19 lines
177 B
D
// https://issues.dlang.org/show_bug.cgi?id=18493
|
|
// REQUIRED_ARGS: -betterC
|
|
|
|
struct S
|
|
{
|
|
this(this)
|
|
{
|
|
}
|
|
|
|
~this()
|
|
{
|
|
}
|
|
}
|
|
|
|
struct C
|
|
{
|
|
S s1;
|
|
S s2;
|
|
}
|