mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
22 lines
227 B
D
22 lines
227 B
D
// REQUIRED_ARGS: -inline
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=20420
|
|
|
|
struct S { ~this(); }
|
|
|
|
class C
|
|
{
|
|
this(S, int) {}
|
|
}
|
|
|
|
int i();
|
|
|
|
C create()
|
|
{
|
|
return new C(S(), i());
|
|
}
|
|
|
|
auto test()
|
|
{
|
|
auto c = create();
|
|
}
|