https://issues.dlang.org/show_bug.cgi?id=23036
--- Comment #1 from RazvanN <razvan.nitu1305 at gmail.com> ---
struct S
{
this(ref S) {}
this(S, int a = 2) {}
}
void main()
{
S a;
S b = a;
}
--