mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
148 B
D
13 lines
148 B
D
// https://issues.dlang.org/show_bug.cgi?id=23036
|
|
|
|
struct S
|
|
{
|
|
this(ref S) {}
|
|
this(S, int a = 2) {}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S a;
|
|
S b = a;
|
|
}
|