1// { dg-additional-sources "mod2.d mod3.d" }
2module mod1;
3import mod2;
4
5shared int x;
6shared static this()
7{
8    x = 1;
9}
10