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