]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/test17073.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / test17073.d
1 struct S0
2 {
3 int x = void;
4 }
5 struct S1
6 {
7 S0 x = S0(42);
8 }
9 void main()
10 {
11 S1 x;
12 assert(x.x.x == 42);
13 }