xref: /netbsd-src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.cycles/mod1.d (revision 627f7eb200a4419d89b531d55fccd2ee3ffdcde0)
1 // { dg-additional-sources "mod2.d mod3.d" }
2 module mod1;
3 import mod2;
4 
5 shared int x;
this()6 shared static this()
7 {
8     x = 1;
9 }
10