Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
test10186.d
blob: d7eccbc7e38b68ee451921c4cacc0c306612a903 [
file
] [
log
] [
blame
]
struct
S
{
@disable
this
();
this
(
int
i
)
{
}
}
class
C
{
this
()
{
s
=
S
(
1
);
}
S s
;
}
class
CR
{
S s
;
this
()
{
s
=
S
(
1
);
}
}
void
main
()
{
auto
c
=
new
C
;
}