static this() { printf ("Third module constructor\n"); } class Third { static this() { printf ("Third static constructor\n"); } this() { printf ("Third class constructor\n"); } }