d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test22638.d
blobd7b5fdf1a9dd0b850190fb17f234ba6d12d73b0a
1 // https://issues.dlang.org/show_bug.cgi?id=22638
3 struct S
5 this(ref const(S));
6 ~this();
9 extern(C++) void set(const S s);
11 void disp()
13 S p;
14 return set(p);