mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
262 B
D
14 lines
262 B
D
// https://issues.dlang.org/show_bug.cgi?id=22997
|
|
|
|
struct Forward {}
|
|
|
|
struct Foo
|
|
{
|
|
this(ref typeof(this) rhs)
|
|
{
|
|
this(rhs, Forward.init);
|
|
}
|
|
|
|
this(ref typeof(this) rhs, Forward) {}
|
|
this(typeof(this) rhs, int i, double d, string s) {}
|
|
}
|