Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
test8296.d
blob: d29c9ed995ecafe7dd182a258e73aec0f09f96a0 [
file
] [
log
] [
blame
]
struct
bar2
{
int
i
;
@disable
this
();
this
(
int
i
)
{
this
.
i
=
i
;
}
}
class
InnerBar
{
bar2 b
;
this
()
{
b
=
bar2
(
0
);
}
}
struct
bar1
{
InnerBar
b
;
}
class
Foo
{
bar1 m_bar1
;
}
void
main
(
string
[]
args
)
{
auto
foo
=
new
Foo
();
}