d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test20420.d
blob5d99e9c08528edb540490f3c99a8cd92c2f5cd64
1 // REQUIRED_ARGS: -inline
3 // https://issues.dlang.org/show_bug.cgi?id=20420
5 struct S { ~this(); }
7 class C
9 this(S, int) {}
12 int i();
14 C create()
16 return new C(S(), i());
19 auto test()
21 auto c = create();