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