1 module imports.testminitBB;
2 
3 import core.stdc.stdio;
4 int bb;
5 
this()6 static this()
7 {
8     printf("BB\n");
9     bb = 1;
10 }
11 
12