blob: 20912941620b1fcbf56622d1075753fbffa19100 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=22593
struct Foo(T){
this(Rhs, this This)(scope Rhs rhs){
}
this(ref scope typeof(this) rhs){
}
}
struct Bar{
Foo!int foo;
}