blob: ebdf9ee5b8d20d11a425d91670bd6d32ac37b944 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=20367
struct A
{
int x;
this(ref return scope A rhs) {}
@disable this(this) {}
}
void main()
{
A a;
A b = a; // copy constructor gets called
}