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

17 lines
142 B
D

struct Test1a
{
this(this)
{
}
}
struct Test1b
{
Test1a a;
}
struct Test1c
{
const Test1b b;
@disable this(this);
}