mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
192 B
D
13 lines
192 B
D
// 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;
|
|
}
|