]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/imports/testminitBB.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / imports / testminitBB.d
1 module imports.testminitBB;
2
3 import core.stdc.stdio;
4 int bb;
5
6 static this()
7 {
8 printf("BB\n");
9 bb = 1;
10 }
11