1 module mempooled; 2 3 public import mempooled.fixed; 4 5 version (unittest) 6 { 7 version (D_BetterC) 8 { 9 import core.stdc.stdio; 10 extern (C) int main() 11 { 12 static foreach(u; __traits(getUnitTests, mempooled.fixed)) 13 u(); 14 printf("All unit tests have been run successfully.\n"); 15 return 0; 16 } 17 } 18 }