(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test20406.d
// https://issues.dlang.org/show_bug.cgi?id=20406
struct S
{
	@disable this();
	this(int) {}
	this(ref S other) {}
}

void foo(S s) {}

void main()
{
    S s = S(3);
    foo(s);
}