Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
test20420.d
blob: 5d99e9c08528edb540490f3c99a8cd92c2f5cd64 [
file
] [
log
] [
blame
]
// 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
();
}