1 module imports.test17181a;
2 
3 int a = 0;
this()4 static this() { a = 1; }
5 
abc(T)6 T abc(T)(T i)
7 {
8     import imports.test17181b;
9     return i;
10 }
11