]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test15402.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test15402.d
1 // REQUIRED_ARGS: -de
2
3 struct S
4 {
5 package int field;
6 }
7
8 void test()
9 {
10 S s;
11 s.field = 1;
12 }