ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.test/runnable/b17073.d

14 lines
118 B
D
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
struct S0
{
int x = void;
}
struct S1
{
S0 x = S0(42);
}
void main()
{
S1 x;
assert(x.x.x == 42);
}