(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test20367.d
// 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
}