module secondPackage.name; struct structType { const int constValue = 0; static int staticValue; void method () { } static void staticFunction () { } } unittest { } static this () { assert (1); } static ~this () { } class bar { const int classConstValue = 0; static int classStaticValue; new (uint size) { return null; } delete (void *data) { } this () { } ~this () { } static this () { } static ~this () { } invariant { } static void staticFunction () { } void method () { } } void funct () { }