mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
180 B
D
15 lines
180 B
D
// https://issues.dlang.org/show_bug.cgi?id=22638
|
|
|
|
struct S
|
|
{
|
|
this(ref const(S));
|
|
~this();
|
|
}
|
|
|
|
extern(C++) void set(const S s);
|
|
|
|
void disp()
|
|
{
|
|
S p;
|
|
return set(p);
|
|
}
|